I am trying to compute the paramaters of a sample mean, but I found a standard error (0.02463249) bigger than variance (0.0006067597).
Maybe I made an error into my r code but I don't find it. Someone could give a hand to me please ?
Here my code :
x.s <- sample.mean[,'value'] ; m.s <- 1000 ; mu.s <- mean(x.s) ; var.s <- var(x.s)/m.s ; sd.s <- sd(x.s)/sqrt(m.s)
x.s is my samples means values and m.s the number of simulation.