gpt4 book ai didi

R - ggplot2 将 x Axis 值更改为非对数值

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

我正在绘制一些支付分布信息,并在将数据缩放为对数正态(base-e)后汇总数据。直方图结果很好,但我想修改 x Axis 以显示非对数等效项。

我当前的 Axis 显示 [0:2.5:10] 值
或者,我想查看 exp(2.5)、exp(5) 等的值。

关于如何实现这一点的任何建议?我可以在绘图语句中添加任何内容来缩放 x Axis 值吗?也许有更好的方法 - 想法?

当前代码:

ggplot(plotData, aes_string(pay, fill = pt)) + geom_histogram(bins = 50) + facet_wrap(~M_P)

enter image description here

回答...最终情节:
enter image description here

最佳答案

不确定这是否正是您所追求的,但您可以使用 scale_x_continuous 将 x Axis 标签的文本更改为您想要的任何内容。

这里没有:

ggplot(data = cars) + geom_histogram(aes(x = speed), binwidth = 1)

这里有:
ggplot(data = cars) + geom_histogram(aes(x = speed), binwidth = 1) +
scale_x_continuous(breaks=c(5,10,15,20,25), labels=c(exp(5), exp(10), exp(15), exp(20), exp(25)))

关于R - ggplot2 将 x Axis 值更改为非对数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35262341/

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