我试图使我的x轴刻度标签不重叠(相互之间或与x轴重叠)。
这是我的简单脚本(我在线阅读easyggplot2使用它)
ggplot2.barplot(data=fig1_data, xName='species', yName="total",
groupName='location', groupColors=c('#0066ff','#cc0000'),
position=position_dodge(),
#background and line colors
backgroundColor="white", color="black",
xtitle="Species", ytitle="Total number of beetles caught",
mainTitle="Number of beetles caught in ground vs. canopy traps",
removePanelGrid=TRUE,removePanelBorder=TRUE,
axisLine=c(0.5, "solid", "black"),
xtickLabelRotation=30
)
我是R的新手,所以用非常简单的术语解释对我来说是最有帮助的。我认为有一个相对简单的解决方案,我似乎无法使其正常工作。谢谢!