gpt4 book ai didi

r - qplot ylab 中的下标和上标 [R]

转载 作者:行者123 更新时间:2023-12-04 17:11:48 27 4
gpt4 key购买 nike

我尝试使用 expression(),它适用于 noraml 图,但我在下面的尝试失败了:有什么想法吗?

我想写:µg CO2 (下标 2) – C m-2 (上标 -2) h-1 (上标 -1)

完美运行:

plot(CO2~water_content, data=gases, ylab = expression(paste("µg ", CO[2], " - C ", m^-2, " ", h^-1, sep="")))             

失败:
qplot(factor(vegetation_dummy),CO2,facets=sampling~biochar,geom=c('boxplot'),data=gases_PL)+theme_bw()+xlab('Plants')+ylab = expression(paste("µg ", CO[2], " - C ", m^-2, " ", h^-1, sep=""))

非常感谢!

最佳答案

您的命令失败,因为语法错误

qplot(..) ... + ylab = expression(...) 

你需要像'+ ylab(...)'这样的东西

例如像这样:
data(diamonds)
qplot(carat, depth, data=diamonds, facets = cut~color, geom='boxplot') +
ylab(expression(paste("µg ", CO[2], " - C ", m^-2, " ", h^-1, sep="")))

关于r - qplot ylab 中的下标和上标 [R],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9923691/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com