Python Windrose图例标签

时间:2018-10-18 04:29:44

标签: python label legend rose-diagram

我试图完全控制Windrose中的传说;图例由垃圾箱控制,可使用b来调用。但是,我想更改bin组的名称。

Bin group names

在线查看时,我发现的唯一解决方案是编辑windrose的.py文件,对其进行编辑,然后将其重新导入python脚本中。

Python Windrose legend bracket format and loc

我一直在寻找一种更简单的方法,因为我计划为脚本中的各种绘图使用不同的纸槽。到目前为止,我已经尝试了ax.info['bins']label,但似乎没有用。

1 个答案:

答案 0 :(得分:0)

通过在ax.set_legend中添加标签参数,并更改脚本以接受该参数。我还添加了一个小验证,以防标签与手柄不匹配时显示错误。

ax.set_legend(labels = ['T', 'S', 'M'], title="Failure Mode", loc="upper left")

    def get_labels(labels, decimal_places=1):
        _decimal_places = str(decimal_places)

        fmt = (
            "[%." + _decimal_places + "f " +
            ": %0." + _decimal_places + "f"
        )

        if labels is None:
            labels = np.copy(self._info['bins'])
            if locale.getlocale()[0] in ['fr_FR']:
                fmt += '['
            else:
                fmt += ')'
            labels = [fmt % (labels[i], labels[i + 1])
                for i in range(len(labels) - 1)]
        else:
            if len(labels) != len(self._info['bins']) -1 :
                print("ERROR")
            labels = labels

        return labels


    kwargs.pop('handles', None)

    decimal_places = kwargs.pop('decimal_places', 1)
    labels = kwargs.pop('labels', None)

    handles = get_handles()
    labels = get_labels(labels, decimal_places)
    self.legend_ = mpl.legend.Legend(self, handles, labels, loc, **kwargs)
    return self.legend_

更多信息:Github issue solution