Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我发现使用该函数 mean()并var()计算 R 中的平均值和方差值很方便。
mean()
var()
我想知道 OCaml 中是否有类似的内置函数?
mean(x) = sum(x)/length(x) var(x) = sum((x-mean(x))^2)/(length(x)-1)
谢谢!
OCaml 在标准库中没有这些功能。但是,存在与GSL的绑定。统计绑定包括均值、方差和许多其他函数。