R,“ BinHist”中的功能出现问题

时间:2018-09-18 21:28:23

标签: r

我正在尝试使用我在学术期刊()中找到的一些代码。我是R的新手。到达代码调用函数“ binHist”的代码时,提示“找不到函数“ binhist”。我无法弄清它是否在库中/我需要安装的软件包,或者如果代码还有其他问题,我们将不胜感激。这是我从文章中提取的代码:

whichData = yourData 
baseH = data.frame()
RunningSum = 0
for (i in 2:16) {
tempBin = NULL
tempBin = binhist(i, whichData$rt)
theMean = sum(tempBin)/(i)
Divisor = sum(tempBin)
new = data.frame()
for (j in 1:ncol(tempBin)) {
grabVal = (tempBin[j] - theMean)^2
names(grabVal) <- NULL
new = c(new,grabVal)
}
extra = i - ncol(tempBin)
NewSum = Reduce("+",new) + extra*((0 - theMean)^2)
StdDev = sqrt(NewSum /(i-1))
RowVal = StdDev /Divisor
RunningSum = RunningSum + RowVal
baseH = c(baseH, list(tempBin))
}
paste("Number of Trials:",Divisor)
paste("Modulo-Binning Score (MBS): ",RunningSum)
library(plyr)
baseNow = do.call(rbind.fill,baseH)

0 个答案:

没有答案