theme_classic应用于ggplot2后无法修改theme其他内容
ps今天发现明明自己已经加的theme的修改内容但是无效,半天后发现,,,,
注意以下两种代码顺序*
*1
ggplot(plotdata, aes(标线, range,fill=标线)) +
geom_boxplot()+
xlab("标线类型")+ ylab("极差")+
theme(legend.position = "none")+
theme(axis.text.x=element_text(angle=90, hjust=1))+
theme_classic() ##########################重点
2
ggplot(plotdata, aes(标线, range,fill=标线)) +
geom_boxplot()+
xlab("标线类型")+ ylab("极差")+
theme_classic()+ ##########################重点
theme(legend.position = "none")+
theme(axis.text.x=element_text(angle=90, hjust=1))
最后发现,在ggplot2中代码顺序也很重要
ps也许这就是我基础差的原因吧,,,,,