包含带有指数的轴标题

huangapple go评论85阅读模式
英文:

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*')'))

包含带有指数的轴标题

huangapple
  • 本文由 发表于 2023年5月31日 22:45:16
  • 转载请务必保留本文链接:https://go.coder-hub.com/76374733.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定