我试图在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
我如何删除对数刻度并在数据中使用原始数字(以百万为单位)