gpt4 book ai didi

r - R中的直方图函数-打破参数不起作用

转载 作者:行者123 更新时间:2023-12-02 07:50:49 26 4
gpt4 key购买 nike

我喜欢为每行创建直方图对象并定义断点:​​

Hist <- list()
for (i in 1:10) {
Hist[[i]] <- hist(data[i,],breaks=25)
}

但是我对中断的要求和输出中的中断数量之间没有区别。而且直方图中的中断数量也不同。

这有什么原因吗?

最佳答案

要获得一致的中断,请指定一个向量。正如您所期望的,不是整数!

是的,这是有原因的;)来自直方图帮助页面:?hist:

`breaks` can be one of:

1. a vector giving the breakpoints between histogram cells,
2. a function to compute the vector of breakpoints,
3. a single number giving the number of cells for the histogram,
4. a character string naming an algorithm to compute the number of cells (see ‘Details’),
5. a function to compute the number of cells.

在情况 3、4、5 中,数字只是一个建议;断点将被设置为漂亮的值。如果 breaks 是一个函数,则将 x 向量作为唯一的参数提供给它。

<小时/>

请注意我用粗体突出显示的部分。

关于r - R中的直方图函数-打破参数不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36135015/

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