Question: Random Drawings from a Empirical Distribution with Standard Deviation +- 1

How can I get random drawings from a list with data in the range of mean + - 1 standard deviation?

I know how to do it for a theoretical normal distribution

with(Statistics);
S := Sample(RandomVariable(Normal(0, 1)), 1000)

but not for an empirical distribution....

Please Wait...