MaityTest: Nonparametric Test of Isotropy Using the Sample Covariogram

Description Usage Arguments Details Value References See Also Examples

Description

This function performs the nonparametric test of isotropy using the sample covariogram from Maity and Sherman (2012) for spatial data with sampling locations following any general spatial sampling design. It uses the Epanechnikov kernel function with an empirical bandwidth parameter to smooth over spatial lags. The asymptotic variance-covariance matrix is estimated using the grid based block bootstrap (GBBB) from Lahiri and Zhu (2006). See Maity and Sherman (2012) for more details.

Usage

1
2
3
MaityTest(spdata, lagmat, A, df, xlims, ylims, grid.spacing = c(1, 1),
  block.dims, nBoot = 100, kappa = 1, user.bandwidth = F,
  bandwidth = c(1, 1))

Arguments

spdata

An n x 3 matrix. The first two columns provide (x,y) spatial coordinates. The third column provides data values at the coordinates. This argument can also be an object of class geodata from the package geoR or of class SpatialPointsDataFame from the package sp.

lagmat

A k x 2 matrix of spatial lags. Each row corresponds to a lag of the form (x.lag, y.lag) for which the covariogram value will be estimated.

A

A d x k contrast matrix. The contrasts correspond to contrasts of the estimated covariogram at the lags given in 'lagmat'.

df

A scalar indicating the row rank of the matrix A. This value gives the degrees of freedom for the asymptotic Chi-squared distribution used to compute the p-value.

xlims

A vector of length two providing the lower and upper x-limits of the sampling region. To ensure all sampling locations are included in the subsampling procedure, the x-limits should be slightly wider than than the minimum and maximum observed x-coordinates of sampling locations.

ylims

A vector of length two providing the lower and upper y-limits of the sampling region. To ensure all sampling locations are included in the subsampling procedure, the y-limits should be slightly wider than than the minimum and maximum observed y-coordinates of sampling locations.

grid.spacing

A vector of length two providing the x (width) and y (height) spacing, respectively, of the underlying grid laid on the sampling region to create spatial blocks. If the grid spacing width does not evenly divide the width of the sampling region, some data will be ommited during subsampling, i.e., the function does not handle partial windows. Same applies to grid spacing height and height of sampling region. See details for an example.

block.dims

A vector of length two corresponding to the width and height of the blocks used in the GBBB. The width and height are given in terms of the spacing of the grid laid on the sampling region. See details for an example.

nBoot

A scalar indicating the number of grid based block bootstrap (GBBB) samples to compute (see Lahiri and Zhu (2006) for details on GBBB). Recommended to be at least 50.

kappa

A scalar corresponding to the tuning parameter to adjust empirical bandwidth.

user.bandwidth

Logical. Defaults to FALSE. Set to TRUE to manually override the empirical bandwidth.

bandwidth

When user.bandwidth = TRUE, a vector of length two providing the user-definted bandwidths for smoothing over spatial lags in the x and y directions.

Details

This function currently only supports square and rectangular sampling regions and does not support partial blocks. For example, suppose the sampling region runs from 0 to 20 in the x-direction (xlims = c(0, 20)) and from 0 to 30 in the y-direction (ylims = c(0, 30)) and an underlying grid of 1 by 1 is laid over the sampling region. Then an ideal value of block.dims would be (2,3) since this would imply the blocks created have dimension 2 by 3 and these values evenly divide the width (20) and height (30), respectively, of the sampling region. Using the vector (3, 4.5) would imply that some data will not be used in the GBBB since these values would create partial blocks in the sampling region.

The value block.dims provides the width and height of the blocks in terms of the underlying grid laid on the sampling region. For example, if a grid with dimensions of grid.spacing = c(0.1, 0.2) is laid on the sampling region and block.dims = c(2,3) then the dimensions of the blocks created by the moving windows are (0.2, 0.6). The block dimensions of 0.2 and 0.6 should evenly divide the width and height, respectively, of the entire sampling region. Thus, the user must take care to ensure that the values of grid.spacing and block.dims are compatible with the dimensions of the sampling region. The easiest way to meet this constrain is to make the grid.spacing values a function of the xlims and ylims values. For example, to put down a 10 x 10 grid on the domain, use grid.spacing = (xlims[2]-xlims[1], ylim[2]-ylims[1])/10. Then, setting block.dims = c(2,2) ensures that no data will be omitted during thes subsampling.

To preserve the spatial dependence structure, the spatial blocks should have the same shape (i.e. square or rectangle) and orientation as the entire sampling domain.

Value

C.hat

A matrix of the spatial lags provided and the covariogram, C-hat(), point estimates at those lags used to construct the test statistic.

V.hat

The estimate of the asymptotic variance-covariance matrix, V-hat, used to construct the test statistic.

n.boot

The number of bootstrap samples used to estimate V.

test.stat

The calculated test statistic.

pvalue.chisq

The p-value computed using the asymptotic Chi-squared distribution.

References

Maity, A., & Sherman, M. (2012). Testing for spatial isotropy under general designs. Journal of Statistical Planning and Inference, 142(5), 1081-1091.

Lahiri, S. N., & Zhu, J. (2006). Resampling methods for spatial regression models under a class of stochastic designs. The Annals of Statistics, 34(4), 1774-1813.

See Also

GuanTestUnif

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
library(mvtnorm)
set.seed(1)
#Sample Size
N <- 300
#Set parameter values for exponential covariance function
sigma.sq <- 1
tau.sq <- 0.0
phi <- 1/4
#Generate sampling locations
coords <-  cbind(runif(N,0,16), runif(N,0,16))
D <-  as.matrix(dist(coords))
R <- sigma.sq * exp(-phi*D)
R <- R + diag(tau.sq, nrow = N, ncol = N)
#Simulate Gaussian spatial data
z <- rmvnorm(1,rep(0,N), R, method = "chol")
z <- z - mean(z)
z <- t(z)
mydata <- cbind(coords, z)
mylags <- rbind(c(1,0), c(0, 1), c(1, 1), c(-1,1))
myA <- rbind(c(1, -1, 0 , 0), c(0, 0, 1, -1))
my.xlims <- c(0, 16)
my.ylims <- c(0, 16)
my.grid <- c(1,1)
my.blockdims <- c(4,4)
#Number of bootstraps for demonstration only.
#In practice, use nBoot > 50
my.nBoot <- 3
tr <- MaityTest(mydata, mylags, myA, df = 2, my.xlims, my.ylims, my.grid, 
my.blockdims, nBoot = my.nBoot)
tr

## Not run: 
library(geoR)
#Simulate data from anisotropic covariance function
aniso.angle <- pi/4
aniso.ratio <- 2
coordsA <- coords.aniso(coords, c(aniso.angle, aniso.ratio))
Da <- as.matrix(dist(coordsA))
R <- sigma.sq * exp(-phi*Da)
R <- R + diag(tau.sq, nrow = N, ncol = N)
z <- rmvnorm(1,rep(0,N), R, method = c("chol"))
z <-  z-mean(z)
z <- t(z)
mydata <- cbind(coords, z)
#Run the test on the data generated from an anisotropic covariance function
#Increase the number of bootstraps
my.nBoot = 100
tr <- MaityTest(mydata, mylags, myA, df = 2, my.xlims, my.ylims, 
my.grid, my.blockdims, nBoot = my.nBoot)
tr

## End(Not run)

spTest documentation built on May 2, 2019, 8:27 a.m.

Related to MaityTest in spTest...