gpt4 book ai didi

r - 如何在ggplot2中使用上标

转载 作者:行者123 更新时间:2023-12-03 20:03:07 24 4
gpt4 key购买 nike

如何在x轴上打印埃平方?我尝试如下。

labs(x = "x axis" (Å^2)", y = "y axis")

最佳答案

我们可以使用bquote

library(ggplot2)
ggplot(mtcars, aes(hp, mpg)) +
geom_point() +
labs(x = bquote('x axis'~(Å^2)), y = "y axis") +
#or
#labs(x = bquote('x axis'~(ring(A)^2)), y = "y axis")
theme_bw()

enter image description here

关于r - 如何在ggplot2中使用上标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37825558/

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