gpt4 book ai didi

r - 在没有变换的情况下在 ggplot2 中指定带刻度的中断数?

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

如果我希望我的数据轴有更多的中断但没有对值进行转换,我该如何在 ggplot2 中做到这一点?例如:

... + scale_x_continuous(breaks=scales.trans_breaks("log2", function(x) 2^x, n=8),   limits=limits)

如果您希望转换数据并且 n= 有效参数让你说有多少休息。如何在不转换数据的情况下指定中断?你只是给它一个身份功能吗?

最佳答案

你可以给scale_x_continuous像这样的中断向量:

n=5
breaks = seq(min(dat$x),max(dat$x), length.out = n)
m + scale_x_continuous(breaks=breaks)

关于r - 在没有变换的情况下在 ggplot2 中指定带刻度的中断数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15733531/

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