-1

I need a data set with a mean of 0 and stdv of 1. how do i get this?

2 Answers2

7

You could buy a copy of A Million Random Digits with 100,000 Normal Deviates.

Sycorax
  • 76,417
  • 20
  • 189
  • 313
1

In R, for instance,

rnorm(10000)

will give you ten thousand N(0,1) (pseudo)random observations. You could use runif to obtain uniform distributions, or any distribution of your choice by setting parameters so that mean is 0 and variance is 1.

F. Tusell
  • 7,733
  • 19
  • 34