rmfcm | R Documentation |
Draws n
samples from the eFCM.
rmfcm(
lambda,
delta,
dist = NULL,
coord = NULL,
nu = 0.5,
n = 5e+05,
miles = FALSE,
seed = NULL
)
lambda , delta |
Positive scalars: rate |
dist |
Optional |
coord |
Optional two-column matrix/data.frame of station coordinates (lon, lat).
Used to build |
nu |
Matérn smoothness parameter (default |
n |
Number of simulated rows (default |
miles |
Logical passed to |
seed |
Optional integer seed for reproducibility. |
A numeric matrix of size n x d
(rows = samples, cols = stations).
data(LonLat)
sim <- rmfcm(lambda = 2, delta = 100, coord = LonLat[1:2, ], n = 10000)
dim(sim) # 10000 x 2
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.