I am trying to create 200 samples with mean = 3.5 and SD of 0.25 I do this with the following R Command :
set.seed(9)
data1 <- replicate(200, rnorm(10,3.5,0.25), simplify=FALSE)
I got data1 having 200 samples of size 10.
Now I want to find the minimum value in each sample. I am not able to figure out how do I do it in R. Please Help