Pyplot - 反转Y标签而不反转条形图

时间:2016-08-22 01:12:06

标签: matplotlib seaborn

我有一个使用seaborn的factorplot:

import seaborn as sns
sns.set_style('white')
sns.set_context('paper')
g = sns.factorplot(x="Ligand",y="KD",col='Analyte', data=df, kind='bar', col_wrap=5).set(yscale='log')
g.set_titles("{col_name}")
g.set_xticklabels(rotation=90,size=8)
ax = plt.gca()
ax.set_ylim([0.001,0.00000000001])

enter image description here

我想翻转从上到下的y轴,10 ^ -3到10 ^ -11但我想保持列向下。这样最大的列将是最低值。例如,10 ^ -11将具有最大的列

1 个答案:

答案 0 :(得分:0)

我发现您可以做到:

plt.ylim(reversed(plt.ylim()))