Hi, I have a list of 250 numbers in "data" which I imported from an Excel file.
I can use RandomSample[data, 7] to get samples from this "data".
How can I sample my "data" x times, calculate the mean each time and create a dot plot of the means?
I tried For[i=1, i<100, i++, samplemeanlist[[i]]=Mean[RandomSample[data,7]]]
But I get an Noval: value not immediately available error.
I do get a list of 100 means when I do this: For[i=1, i<100, i++, Print[Mean[RandomSample[data,7]]]]
Now, how can I store these values and then make a dot plot? (or Histogram?) Thank you!