This tag is for questions pertaining to random numbers and their generators, whether pseudo-random or truly random.
Say i have a dataframe with 100,000 entries and want to split it into 100 sections of 1000 entries. How do i take …
python pandas sample random-sampleI am trying to create a pandas series. One column of the series should contain n sequential numbers. [1, 2, 3, ..., n] One …
python pandas dataframe series random-sampleIn R, I want to generate a random sample of a discrete random variable: X, where: P(X=a)=P(…
r binary-data random-sampleI have a 10^7 lines file, in which I want to choose 1/100 of lines randomly from the file. This is the …
linux unix awk random-sample file-processingI am using R to construct an agent based model with a monte carlo process. This means I got many …
r montecarlo random-sample agent-based-modelingI am trying to generate random points on the surface of the sphere using numpy. I have reviewed the post …
python numpy geometry random-sample uniform-distributionPossible Duplicate: How do I randomly select k points from N points in MATLAB? Let's say I have a dataset …
matlab octave random-sampleRelated to this question. gender <- c("F", "M", "M", "F", "F", "M", "F", "F") age <- c(23, 25, 27, 29, 31, 33, 35, 37) …
r row subset random-sampleI want to randomly select n rows from my data set using the sample() function in R. I was getting …
r random random-sample seedingThis is a combined Java and basic math question. The documentation from Random.nextGaussian() states that it samples from a …
java statistics gaussian random-sample