I am very new to R , so please bear with me on this basic subject. I have a DATA dataset that I created using the data.table package. I created 200 random numbers between 0 and 1, and then did it 10,000 times, finally creating a data table with descriptive statistics for each iteration. My code for it looked like this:
rndm<-runif(200, min=0, max=1) reps <- data.table(x=runif(200*10000),iter=rep(1:200,each=10000)) DATA <- reps[,list(mean=mean(rndm),median=median(rndm),sd=sd(rndm),min=min(rndm), max=max(rndm)),by=iter]
The data looks something like this:
Mean Median SD Min Max 1 0.521 0.499 0.287 0.010 0.998 2 0.511 0.502 0.290 0.009 0.996 . ... ...
and etc.
What I want to do is create a table that finds the average N, average, average, standard deviation, minimum and maximum accumulated sample (not for each column, as indicated above). I need some output to look something like this:
N Mean Median SD Min Max 10000 .502 .499 .280 .002 .999
How can i do this?
Kara source share