在R中修改tukeys HSD图的标签

时间:2016-04-13 18:05:37

标签: r statistics

大家好,所以我是这方面的初学者,需要帮助修改我的Tukeys y轴标签,因为它们都在彼此的顶部......有没有办法?

请参阅我的代码:

both<-aov(cowpea.and.wheat$Protein.conc..ug.Protein.g.1.Fwt.~cowpea.and.wheat$Treatment*Species, data=cowpea.and.wheat)
summary(both)
TukeyHSD(both)
par(mar=c(3,10,2,1))
plot(TukeyHSD(both),las=1)

情节图片:

enter image description here

非常感谢你的帮助

1 个答案:

答案 0 :(得分:0)

尝试:

with(par(mai=c(1,2.5,1,1)),{plot(TukeyHSD(both), las=1,cex.axis=0.4)})

##par(mai=c(1,2.5,1,1)) adjusts the margin

##cex.axis=0.4 adjusts the axis font size relative to graph 

如果您可以使用上述参数回复图形(虽然问题是几个月回答),看看我的提案是否有效。 问候和运气!