是否有任何命令可以找到R中均值的标准误?
Answers:
标准误差(SE)只是采样分布的标准偏差。采样分布的方差是数据的方差除以N,而SE是其平方根。从这种理解中可以看出,在SE计算中使用方差会更有效。sd
R中的函数已经做一个平方根(sd
R中的代码在R中,只需键入“ sd”即可显示)。因此,以下是最有效的。
se <- function(x) sqrt(var(x)/length(x))
为了使函数稍微复杂一点并处理您可能传递给的所有选项,var
可以进行此修改。
se <- function(x, ...) sqrt(var(x, ...)/length(x))
使用这种语法,可以利用诸如如何var
处理缺失值之类的优势。任何可以传递给的东西var
作为命名参数在此se
调用中使用。
stderr
是中的函数名称base
。
stderr
不计算显示的标准误差display aspects. of connection
stderr
计算标准错误,他警告说此名称已在base中使用,John最初为他的函数命名stderr
(请检查编辑历史记录...)。
由于我时不时要回到这个问题,并且因为这个问题很旧,所以我发布了一个投票最多的答案的基准。
请注意,对于@Ian和@John的答案,我创建了另一个版本。length(x)
我没有使用,而是使用了sum(!is.na(x))
(避免使用NA)。我使用10 ^ 6的向量,重复了1000次。
library(microbenchmark)
set.seed(123)
myVec <- rnorm(10^6)
IanStd <- function(x) sd(x)/sqrt(length(x))
JohnSe <- function(x) sqrt(var(x)/length(x))
IanStdisNA <- function(x) sd(x)/sqrt(sum(!is.na(x)))
JohnSeisNA <- function(x) sqrt(var(x)/sum(!is.na(x)))
AranStderr <- function(x, na.rm=FALSE) {
if (na.rm) x <- na.omit(x)
sqrt(var(x)/length(x))
}
mbm <- microbenchmark(
"plotrix" = {plotrix::std.error(myVec)},
"IanStd" = {IanStd(myVec)},
"JohnSe" = {JohnSe(myVec)},
"IanStdisNA" = {IanStdisNA(myVec)},
"JohnSeisNA" = {JohnSeisNA(myVec)},
"AranStderr" = {AranStderr(myVec)},
times = 1000)
mbm
结果:
Unit: milliseconds
expr min lq mean median uq max neval cld
plotrix 10.3033 10.89360 13.869947 11.36050 15.89165 125.8733 1000 c
IanStd 4.3132 4.41730 4.618690 4.47425 4.63185 8.4388 1000 a
JohnSe 4.3324 4.41875 4.640725 4.48330 4.64935 9.4435 1000 a
IanStdisNA 8.4976 8.99980 11.278352 9.34315 12.62075 120.8937 1000 b
JohnSeisNA 8.5138 8.96600 11.127796 9.35725 12.63630 118.4796 1000 b
AranStderr 4.3324 4.41995 4.634949 4.47440 4.62620 14.3511 1000 a
library(ggplot2)
autoplot(mbm)
您可以使用pastec包中的stat.desc函数。
library(pastec)
stat.desc(x, BASIC =TRUE, NORMAL =TRUE)
您可以在这里找到更多有关它的信息:https : //www.rdocumentation.org/packages/pastecs/versions/1.3.21/topics/stat.desc
记住均值也可以通过使用线性模型获得,将变量回归单个截距,您也可以使用该lm(x~1)
函数!
优点是:
confint()
car::linear.hypothesis()
sandwich
## generate data
x <- rnorm(1000)
## estimate reg
reg <- lm(x~1)
coef(summary(reg))[,"Std. Error"]
#> [1] 0.03237811
## conpare with simple formula
all.equal(sd(x)/sqrt(length(x)),
coef(summary(reg))[,"Std. Error"])
#> [1] TRUE
## extract confidence interval
confint(reg)
#> 2.5 % 97.5 %
#> (Intercept) -0.06457031 0.0625035
由reprex软件包(v0.3.0)创建于2020-10-06