gen_noisedims | R Documentation |
This function generates random noise dimensions to be added to the coordinates of a data structure.
gen_noisedims(n = 500, p = 4, m = rep(0, p), s = rep(2, p))
n |
A numeric value (default: 500) representing the sample size. |
p |
A numeric value (default: 4) representing the number of dimensions. |
m |
A numeric vector (default: c(0, 0, 0, 0)) representing the mean along each dimensions. |
s |
A numeric vector (default: c(2, 2, 2, 2)) representing the standard deviation along each dimensions. |
A data containing the generated random noise dimensions.
set.seed(20240412)
gen_noisedims(n = 500, p = 4, m = c(0, 0, 0, 0), s = c(2, 2, 2, 2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.