gpt4 book ai didi

r - ggplot2 标题中的指数

转载 作者:行者123 更新时间:2023-12-04 14:41:14 25 4
gpt4 key购买 nike

我想在我的情节标题中使用指数和变量。

我尝试使用“expression()”,但是当它在“paste()”方法中时,它会打印文字文本,即 Volume: paste("Volume(",m^{3},")")。当我在“表达式()”中使用变量名时,指数工作,但它打印变量名,即“位置”而不是“加利福尼亚”。

ggtitle(expression(paste(location,
"\nMax Volume Cut-off:", paste(max_volume_criteria, "(", m^{3}, ")"),
"\nVolume Percent Decrease:", criteria, sep=" ")))

我不确定如何让指数和变量名称同时工作。

最佳答案

使用 atop 和 bquote 的组合最终工作:

g + ggtitle(bquote(atop(.(location) ~ "\nMax Volume Cut-off:" ~ .(max_tv_criteria) ~ "(" * m^{3} * ")","Volume Percent Decrease:" ~ .(per_decr_criteria) ~ "%")))

关于r - ggplot2 标题中的指数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57361774/

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