RandomLogisArray-class {DelayedRandomArray} | R Documentation |
A DelayedArray subclass that performs on-the-fly sampling of log-normally distributed values.
RandomLogisArraySeed(dim, location = 0, scale = 1, chunkdim = NULL) ## S4 method for signature 'RandomLogisArraySeed' DelayedArray(seed) RandomLogisArray(dim, location = 0, scale = 1, chunkdim = NULL)
dim |
Integer vector of positive length, specifying the dimensions of the array. |
location, scale |
Numeric vector used as the argument of the same name in |
chunkdim |
Integer vector of length equal to |
seed |
A RandomLogisArraySeed object. |
All constructors return an instance of a RandomLogisArray object, containing random draws from a log-normal distribution with the specified parameters.
Aaron Lun
The RandomArraySeed class, for details on chunking and the distributional parameters.
X <- RandomLogisArraySeed(c(1e5, 1e5)) Y <- DelayedArray(X) Y # Fiddling with the distribution parameters: X2 <- RandomLogisArraySeed(c(1e5, 1e5), location=runif(1e5), scale=runif(1e5)) Y2 <- DelayedArray(X2) Y2 # Using another array as input: library(Matrix) location <- rsparsematrix(1e5, 1e5, density=0.00001) X3 <- RandomLogisArraySeed(c(1e5, 1e5), location=location) Y3 <- DelayedArray(X3) Y3