gpt4 book ai didi

r - 格直方图轴 : how to fix lower limit at 0, 但保持默认上限?

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

我需要自动创建很多密度直方图,我希望 Y 轴从 0 开始,但没有确定上限,我希望它具有默认值。换句话说,我想要 axs = "i"的结果作为下限,而 axs = "r"的结果作为上限。

我不能使用 ylim,因为我不知道哪个值适合每个直方图。我想继续在晶格中工作。

有什么想法吗?谢谢!!

例子:

library(lattice)
histogram(rnorm(100,20,5), type = "density", scales= list( y=list(axs = "i")))
histogram(rnorm(100,20,5), type = "density", scales= list( y=list(axs = "r")))

最佳答案

其实这是我非常喜欢 Lattice 的一个特性

histogram(rnorm(100,20,5), type = "density", ylim=c(0,NA))

当设置 ylimxlim 时,只需将您不想设置的值设置为 NA ,R 就会计算出来

关于r - 格直方图轴 : how to fix lower limit at 0, 但保持默认上限?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23815298/

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