Purrrification of data: Some examples

A First Example To generate a collection of 100 normally distributed random number, we use: rnorm(100) We can repeat this process indefinitely for n times, and when n=9, we have the following collections: collection_1 which we can conveniently regroup into a larger collection of random numbers: larger_collection Alternatively, we can use the rerun shorthand to define that the aforementioned collection: list_of_numbers Each of the vector x(d)=(x(d)1x(d)2…x(d)100),d=1,2,…,9 is a collection of 100 normally distributed random numbers: $$ \ell = \{\mathbf{x}^{(1)}, \mathbf{x}^{(2)}, \ldots, \mathbf{x}^{(9)}\} = \left\{ (x(1)1x(1)2⋮x(1)100), (x(2)1x(2)2⋮x(2)100), \ldots, (x(9)1x(9)2⋮x(9)100)\...