kurtosis.rd
来自「支持向量机完整版(SVM)可以用来进行设别训练」· RD 代码 · 共 31 行
RD
31 行
\name{kurtosis}\alias{kurtosis}\title{Kurtosis}\description{ Computes the kurtosis.}\usage{kurtosis(x, na.rm=FALSE)}\arguments{ \item{x}{a numeric vector containing the values whose kurtosis is to be computed.} \item{na.rm}{a logical value indicating whether \code{NA} values should be stripped before the computation proceeds.}}\details{ If \eqn{N = \mathrm{length}(x)}{N = length(x)}, then the kurtosis of \eqn{x} is defined as \deqn{N^{-1} \mathrm{sd}(x)^{-4} \sum_i(x_i - \mathrm{mean}(x))^4 - 3.}{ N^(-1) sd(x)^(-4) sum_i (x_i - mean(x))^4 - 3.}}\value{ The kurtosis of \code{x}.}\examples{x <- rnorm(100)kurtosis(x)}\keyword{univar}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?