Learn R Programming

GeoModels (version 2.2.1)

NuisParam: 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)

Value

Return a vector string of nuisance parameters.

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.

See Also

GeoFit

Examples

Run this code
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)

Run the code above in your browser using DataLab