Calculates the standard error of mean.
Details
meanSE() calculates the standard error of the mean defined as:
$$\frac{\sigma}{\sqrt{n}}$$ \(\sigma\) being standard deviation of
x and n the length of x.
Examples
meanSE(Pizza$price, na.rm=TRUE)
#> [1] 0.6252242
# evaluate data.frame
sapply(Pizza[, 1:4], meanSE, na.rm=TRUE)
#> index date week weekday
#> 10.04158022 0.26218843 0.03873807 0.05886462
