stderrmean {YAPSA} | R Documentation |
This function returns the standard deviation of an input numerical vector divided by the square root of the length of the input vector
stderrmean(x)
x |
A numerical vector |
Standard deviation of an input numerical vector divided by the square root of the length of the input vector
A <- c(1,2,3) sd(A) stderrmean(A)