sp: Defining spatially varying coefficients in the formula

View source: R/useful_commands.R

spR Documentation

Defining spatially varying coefficients in the formula

Description

This function is used to define spatially varying coefficients within the formula for the Gaussian process spatio-dynamic and spatially varying coefficient process models.

Usage

sp(x)

Arguments

x

The variable/covariate for which spatially varying coefficient is defined.

See Also

GibbsDyn, tp

Examples



##

###########################
## Attach library spTimer
###########################

library(spTDyn)

###########################
## The GP models:
###########################

##
## Model fitting
##

# Read data 
data(NYdata); 

# Define the coordinates
coords<-as.matrix(unique(cbind(NYdata[,2:3])))

# MCMC via Gibbs using default choices
set.seed(11)
post.gp <- GibbsDyn(formula=o8hrmax ~cMAXTMP+WDSP+sp(RH),   
         data=NYdata, coords=coords, scale.transform="SQRT")
print(post.gp)



spTDyn documentation built on Nov. 22, 2022, 5:07 p.m.