从Seaborn条形图中删除自然对数刻度

时间:2020-03-19 16:55:06

标签: python pandas seaborn

我试图在seaborn中进行一些设计,到目前为止,这里是代码

# Plot the results
# Bar plot of Yearly CBM
historica_cost = sns.barplot(
    x = harvest_yearly_cost.year,
    y = harvest_yearly_cost.harvest_cost,).set_title('Historical Yearly Harvest Cost')

historica_cost.figure.savefig('./export/yealy_felling_cbm.png')

输出如下所示 bar plot with log scale

我如何删除对数刻度并在数据中使用原始数字(以百万为单位)

0 个答案:

没有答案