geoParamsCheck: Check parameters

Description Usage Arguments Examples

Description

Check that all parameters for use in Rgeoprofile MCMC are in the correct format.

Usage

1
geoParamsCheck(params, silent = FALSE)

Arguments

params

a list of parameters, as defined by geoParams().

silent

whether to report passing check to console.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# John Snow cholera data
d <- geoData(Cholera$longitude, Cholera$latitude)
p <- geoParams(data = d, sigma_mean = 1.0, sigma_squared_shape = 2)
geoParamsCheck(p)

# simulated data
sim <-rDPM(50, priorMean_longitude = -0.04217491, priorMean_latitude = 
51.5235505, alpha=1, sigma=1, tau=3)
d <- geoData(Cholera$longitude, Cholera$latitude)
p <- geoParams(data = d, sigma_mean = 1.0, sigma_var=0)
geoParamsCheck(p)

bobverity/Rgeoprofile documentation built on May 12, 2019, 11:28 p.m.