ops.fda.usc | R Documentation |
Set or query graphical and prompt output parameters. Allow the user to set and examine a variety of global or local options which affect the way in which fda.usc functions computes and displays its results.
ops.fda.usc(
verbose = FALSE,
trace = FALSE,
warning = FALSE,
ncores = NULL,
int.method = "TRAPZ",
reset = FALSE,
eps = as.double(.Machine[[1]] * 10)
)
verbose |
|
trace |
|
warning |
|
ncores |
integer. Number of CPU cores on the current host. |
int.method |
see |
reset |
|
eps |
epsilon parameter. |
Manuel Oviedo de la Fuente (manuel.oviedo@udc.es).
## Not run:
# If worker initialization failed, please execute this code
ncores <- max(parallel::detectCores() -1,1)
if (ncores==1) {
foreach::registerDoSEQ()
} else{
cl <- suppressWarnings(parallel::makePSOCKcluster(ncores ))
doParallel::registerDoParallel(cl)
}
ops.fda.usc()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.