These functions are obsolete and will be removed in a future release.
Obsolete: replaced by profile_design
.
Obsolete: replaced by runif_design
.
Obsolete: replaced by slice_design
.
Obsolete: replaced by sobol_design
.
cond.loglik(...)profileDesign(
...,
lower,
upper,
nprof,
type = c("sobol", "runif"),
stringsAsFactors = getOption("stringsAsFactors", FALSE)
)
runifDesign(lower = numeric(0), upper = numeric(0), nseq)
sliceDesign(center, ...)
sobolDesign(lower = numeric(0), upper = numeric(0), nseq)
In profileDesign
, additional arguments specify the parameters over which to profile and the values of these parameters.
In sliceDesign
, additional numeric vector arguments specify the locations of points along the slices.
named numeric vectors giving the lower and upper bounds of the ranges, respectively.
The number of points per profile point.
the type of design to use.
type="sobol"
uses sobolDesign
;
type="runif"
uses runifDesign
.
should character vectors be converted to factors?
Total number of points requested.
center
is a named numeric vector specifying the point
through which the slice(s) is (are) to be taken.
profileDesign
returns a data frame with nprof
points per profile point.
runifDesign
returns a data frame with nseq
rows and one column for each variable named in lower
and upper
.
sliceDesign
returns a data frame with one row per point.
The ‘slice’ variable indicates which slice the point belongs to.
sobolDesign
returns a data frame with nseq
rows and one column for each variable named in lower
and upper
.
The Sobol' sequence generation is performed using codes from the NLopt library by S. Johnson.