ggplot中的主题不起作用

时间:2016-12-12 14:39:36

标签: python matplotlib ggplot2 python-ggplot

使用python中的ggplot创建条形图

plot_bar = ggplot(df_aggr , aes( x='Industry',weight='Brand_Value'))           
print plot_bar + geom_bar(stat='identity')

这会给enter image description here

但是,当尝试使用主题(axis_text_x = element_text(angle = 90))垂直对齐xtick标签(行业字段)时,它不起作用而是将条的开头作为值。

 plot_bar = ggplot(df_aggr , aes( x='Industry',weight='Brand_Value'))
 print plot_bar + geom_bar(stat='identity') +theme( axis_text_x = element_text(angle=90))

enter image description here

如何在x轴上垂直对齐Industry x tick标签?

0 个答案:

没有答案