This question already has answers here:
Customize axis labels
(3个答案)
3年前关闭。
如何在ggplot2中更改我的x轴标签的名称?
见下文:
我希望能够大写这些类的首字母(即Crop,而不是crop)。
我已经尝试过下面的代码,但不确定将其放置在何处以及要使用什么功能。
然后加:
(3个答案)
3年前关闭。
如何在ggplot2中更改我的x轴标签的名称?
见下文:
ggbox <- ggplot(buffer, aes(SampledLUL, SOC)) + geom_boxplot()
ggbox <- ggbox + theme(axis.text.x=element_text(color = "black", size=11, angle=30, vjust=.8, hjust=0.8))
ggbox<- ggbox + labs(title = "Land cover Classes") + ylab("SOC (g C/m2/yr)") + xlab("Land cover classes")
上面的代码创建下图:我希望能够大写这些类的首字母(即Crop,而不是crop)。
我已经尝试过下面的代码,但不确定将其放置在何处以及要使用什么功能。
labels = c("Citrus", "Crop", "Cypress Swamp", ..........)
(我正在使用Windows 7,Rstudio) 最佳答案
创建标签:
SoilSciGuylabs <- c("Citrus", "Crop", "Cypress Swamp")
然后加:
+ scale_x_discrete(labels= SoilSciGuylabs)
08-19 23:10