使用python中的ggplot创建条形图
plot_bar = ggplot(df_aggr , aes( x='Industry',weight='Brand_Value'))
print plot_bar + geom_bar(stat='identity')
但是,当尝试使用主题(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))
如何在x轴上垂直对齐Industry x tick标签?