NuisParam {GeoModels}R Documentation

Lists the Nuisance Parameters of a Random Field

Description

The procedure returns a list with the nuisance parameters of a given random field model.

Usage

NuisParam(model, bivariate=FALSE,num_betas=c(1,1),copula=NULL)

Arguments

model

String; the name of a random field.

bivariate

Logical; if FALSE (the default) the correlation model is univariate spatial or spatial-temporal. Otherwise is bivariate.

num_betas

Numerical; the nunber of mean parameters in the linear specification (default is 1)

copula

The type of copula.

Details

The function returns a list with the nuisance parameters of a given random field model.

Value

Return a vector string of nuisance parameters.

Author(s)

Moreno Bevilacqua, moreno.bevilacqua89@gmail.com,https://sites.google.com/view/moreno-bevilacqua/home, Víctor Morales Oñate, victor.morales@uv.cl, https://sites.google.com/site/moralesonatevictor/, Christian", Caamaño-Carrillo, chcaaman@ubiobio.cl,https://www.researchgate.net/profile/Christian-Caamano

See Also

GeoFit

Examples

library(GeoModels)

NuisParam("Gaussian")

NuisParam("Binomial")

NuisParam("Weibull",num_betas=2)

NuisParam("SkewGaussian", num_betas=3)

NuisParam("SinhAsinh")

NuisParam("Beta2",copula="Clayton")

NuisParam("StudentT")
## note that in the bivariate case sill and nugget are considered as correlation parameteres
NuisParam("Gaussian", bivariate=TRUE)


[Package GeoModels version 2.0.2 Index]