Answers for "create a non normal random data in r python"

R
2

how to add random numbers randomly in a dataframe in r

# 1000 random numbers with 0 or 1 values:

a <-sample(0:1, 1000, rep = TRUE)

# 0 1 1 0 0 0 1 0 ...
Posted by: Guest on October-19-2020
0

how to create random normal variables in R

rnorm(10)
Posted by: Guest on September-06-2021

Code answers related to "create a non normal random data in r python"

Browse Popular Code Answers by Language