Created
January 17, 2024 22:42
-
-
Save krishnanraman/ca3ff546d82b02eabad95458a7b69c3d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x<-seq(1,20) | |
n<-100000 | |
mx<-c() | |
for (i in 1:n) { | |
mx<-c(mx,max(sample(x,10,replace=F))) | |
} | |
summary(mx) | |
Min. 1st Qu. Median Mean 3rd Qu. Max. | |
10.00 19.00 20.00 19.09 20.00 20.00 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment