Answers for "how to add random numbers randomly in a dataframe in r"

R
1

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

Code answers related to "how to add random numbers randomly in a dataframe in r"

Browse Popular Code Answers by Language