作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
取自documentation :
>>> import matplotlib.pyplot as plt
>>> import seaborn as sns; sns.set()
>>> iris = sns.load_dataset("iris")
>>> g = sns.PairGrid(iris)
>>> g = g.map(plt.scatter)
如何对齐 y 标签?
我尝试过的:
for ax in g.axes.flat:
ax.yaxis.labelpad = 20
但是,这只会将所有标签移动指定的量而不是对齐它们。
最佳答案
是的,这种对齐方式很糟糕。自夸的包怎么敢做"attractive statistical graphics"在对齐标签时如此失败?!开个玩笑,我爱我一些 seaborn,至少是关于如何改进我自己的情节的灵感。
您正在寻找:
ax.get_yaxis().set_label_coords(x,y) # conveniently in axis coordinates
此外,我只会遍历显示标签的轴,但那只是我:
for ax in g.axes[:,0]:
ax.get_yaxis().set_label_coords(-0.2,0.5)
0.5
用于居中垂直对齐,-0.2
用于向左轻微偏移(试错)。
关于python - 如何在 Seaborn PairGrid 中对齐 y 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39961147/
我是一名优秀的程序员,十分优秀!