在ggplot2中,我创建了一个折线图,并使其看起来像我想要的样子。但是,我很难更改x轴上的值。如何将x轴刻度标签从数字1-10更改为某些文本?
这是我的代码:
pd <- position_dodge(0.1)
myplot <- ggplot(LL_young_gg, aes(x=Day, y=Mean, colour=Group)) +
geom_errorbar(aes(ymin=Mean-SEM, ymax=Mean+SEM), width=.1, position=pd) +
geom_line(position=pd) + scale_color_manual(values=c("red", "pink", "dark blue", " light blue")) +
geom_point(position=pd)
myplot + theme_bw() +
theme(axis.line = element_line(colour = "black"),
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
panel.border = element_blank(),
panel.background = element_blank())
数据库(LL_young_gg)是从excel导入的,列(天)的数字是1到10。