英文:
Axis title containing texts with exponents
问题
我正在使用 ggplot2
绘制图表。我想在Y轴标题中添加一个指数,使其看起来像这样:
能量(kcal ∙ mol-1)
我通常将轴标题文本写在 labs()
中,将其美学写在 theme(axis.title.y = element_text())
中。我看到了 这个 答案,但我无法理解其中的任何内容...
英文:
I'm using ggplot2
to plot a chart. I want to add an exponent to a text within the Y-axis title, so it would look like this:
Energy (kcal ∙ mol-1)
I usually write the axis title text inside labs ()
and its aesthetic inside theme (axis.title.y = element_text ())
. I've seen this answer, but I couldn't understand any of it...
答案1
得分: 2
可能是重复的问题。请查看此问题以获取详细答案。
您可以构建一个表达式:
ggplot() + geom_point(aes(x=1, y=1)) +
labs(y=expression('能量(千卡'~mol^-1*')'))
英文:
Probably a duplicate question. Check this question for detailed answers.
You can build an expression
ggplot() + geom_point(aes(x=1, y=1)) +
labs(y=expression('Energy (kcal '~mol^-1*')'))
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论