我正在尝试使用R中的mdlp包离散化我作为示例创建的连续数据。
A=cbind(2,3,6,7,29,56,192,1256)
A=t(A)
mdlp(A)
但是我收到以下错误
Error in cutp[[i]] <- cuts1 :
attempt to select less than one element in integerOneIndex
In addition: Warning messages:
1: In min(x) : no non-missing arguments to min; returning Inf
2: In max(x) : no non-missing arguments to max; returning -Inf
谁能告诉我这是什么问题?包裹为什么不能处理这么短的序列?