Here is my code :
for (p in 1:10){
sample=rgamma(p,p,1)}
Here is what I get
[1] 1.841629
[1] 2.174076 1.410500
[1] 2.398601 4.674819 2.679830
[1] 2.736786 3.767747 4.546256 3.851677
[1] 4.204808 8.393887 10.312640 2.514957 4.863661
How can I simulate this for 1000 times and sum up the the results for each p.
Eg. for p=2, s=sum=(2.174076 + 1.410500 )
By this, there should be 1000 s value for each p
Thankyou very much.
Using
replicate
you can repeat a function forn
times.