我正在使用seaborn.distplot
(python3),并希望每个系列都有2个标签。
我试过像这样的hacky字符串格式方法:
# bigkey and bigcount are longest string lengths of my keys and counts
label = '{{:{}s}} - {{:{}d}}'.format(bigkey, bigcount).format(key, counts['sat'][key])
在文本固定宽度的控制台中,我得到:
(-inf, 1) - 2538
[1, 3) - 7215
[3, 8) - 40334
[8, 12) - 20833
[12, 17) - 6098
[17, 20) - 499
[20, inf) - 87
我假设绘图中使用的字体不是固定宽度,所以我想知道是否有一种方法可以指定我的图例以使标签具有2个对齐的列,并且可能使用a调用seaborn.distplot
tuple
kwarg(或其他任何作品)的label
。
我的参考图:
看起来不错,但我真的希望每个系列的2个标签以某种方式对齐。
答案 0 :(得分:4)
这不是一个好的解决方案,但希望是一个合理的解决方法。关键的想法是将图例拆分为3列以进行对齐,使第2列和第3列上的图例句柄不可见,并将第3列对齐。
import io
import matplotlib
import matplotlib.pyplot as plt
import numpy as np
import seaborn as sns
x = np.random.randn(100)
s = [["(-inf, 1)", "-", 2538],
["[1, 3)", "-", 7215],
["[3, 8)", "-", 40334],
["[8, 12)", "-", 20833],
["[12, 17)", "-", 6098],
["[17, 20)", "-", 499],
["[20, inf)", "-", 87]]
fig, ax = plt.subplots()
for i in range(len(s)):
sns.distplot(x - 0.5 * i, ax=ax)
empty = matplotlib.lines.Line2D([0],[0],visible=False)
leg_handles = ax.lines + [empty] * len(s) * 2
leg_labels = np.asarray(s).T.reshape(-1).tolist()
leg = plt.legend(handles=leg_handles, labels=leg_labels, ncol=3, columnspacing=-1)
plt.setp(leg.get_texts()[2 * len(s):], ha='right', position=(40, 0))
plt.show()