Description Usage Format Examples
These data are a simulated point-referenced geospatial data that serve to provide a clean example of a kriging model. There are 500 observations with coordinates located on a unit square.
1 2 |
The ContrivedData
dataset has 500 observations and 5 variables.
y
The outcome variable. Its true population functional form is y_s=0+1 x_{1s}+2 x_{2s}+ω_{s}+ε_{s}. The true variance of ω is σ^2=0.5 and of ε is τ^2=0.5. The decay term that shapes spatial correlation levels is φ=2.5.
x.1
A predictor with a standard uniform distribution.
x.2
A predictor with a standard normal distribution.
s.1
Coordinate in eastings for each observation, distributed standard uniform.
s.2
Coordinate in northings for each observation, distributed standard uniform.
1 2 3 4 5 | #Examine Data
summary(ContrivedData)
#Initial OLS Model
contrived.ols<-lm(y~x.1+x.2,data=ContrivedData);summary(contrived.ols)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.