Create a matrix or data frame of defined dimensions, whose columns are random uniform vectors
runifmat(nrow = 10, ncol = 10, min = 0, max = 1,
return.df = FALSE, seed = NULL)
Integer: Number of rows. Default = 10
Integer: Number of columns. Default = 10
Float: Min Default = 0
Float: Max. Default = 1
Logical: If TRUE, return data.frame, otherwise matrix. Default = TRUE
Integer: Set seed for rnorm
. Default = NULL