gpt4 book ai didi

r - plotmath 表达式中的前导上标(w/ggplot2)

转载 作者:行者123 更新时间:2023-12-04 09:33:43 24 4
gpt4 key购买 nike

我想使用 plotmathggplot2 中创建一个包含前导上标的轴阴谋。在轴标签上创建上标效果很好,如下所示:

require(ggplot2)
ggplot(mtcars, aes(x=disp, y=mpg)) +
geom_point() +
ylab(expression(x[y]))

enter image description here

但是,我想让我的轴标签读取“y(上标)x” - 从逻辑上讲,这将是 ^yx ,但这不会解析:
Error: unexpected '^' in: "  
geom_point() +
ylab(expression(^"

有没有办法在语句的开头强制使用上标?

最佳答案

这个怎么样:

ggplot(mtcars, aes(x=disp, y=mpg)) + 
geom_point() +
ylab(expression(phantom(0)^y * x))

我确信一定有办法制作“占位符”字符,但我不得不在 ?plotmath 中向下滚动一点。找到它。

关于r - plotmath 表达式中的前导上标(w/ggplot2),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18111606/

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