gaus: Gaussian Process Inference for NPQR

Description Usage Arguments Value Author(s) References See Also

Description

A method for the generic function npqr. It computes, via a Gaussian method, the t-statistic used to conduct inference in nonparametric series quantile regression models, as well as outputting confidence intervals and hypothesis test p-values at a user-specified level.

Usage

1
2
3
gaus(data = data, B = B, taus, formula, basis = NULL, alpha=0.05, 
	var, load, rearrange=F, rearrange.vars="quantile", uniform=F, 
	se="unconditional", average = T, nderivs = 1, method = "fn")

Arguments

data

a data.frame in which to interpret the variables named in the formula argument.

B

the number of simulations to be performed.

taus

a numerical vector, whose entries are strictly between 0 and 1, containing the quantile indexes of interest for the quantile effects.

formula

a formula object, with the response Y on the left of a ~ operator, and the covariate terms, separated by + operators on the right, not including the regressor whose effect is to be estimated nonparametrically. Operators such as '*', ':', 'log()', and 'I()' are allowable. However, factor variables should be constructed prior to entry in the formula: the 'factor()' operator is not allowable.

basis

either a basis generated using the fda package of type "bspline" or "fourier", a factor variable, or an orthogonal polynomial basis generated using the poly command. This basis is the series regressor to be added to formula.

alpha

a real number between 0 and 1: the desired significance level (e.g., 0.05).

var

a column name within data whose values will be used, in combination with basis, to create the vectors used in the nonparametric part of the model.

load

optional manual input of loading vector (or matrix of loading vectors) that will be used as data points at which inference will be performed and over which hypothesis tests will be conducted. Each vector of load should be input as the concatenation of vectors whose entries correspond to the entries of v and Z(w), respectively (for example, the average values of each variable for the parametric part of the model, v, and a specific point for the nonparametric part of the model, Z(w)).

rearrange

a boolean specifiying whether estimates will be monotonized prior to performing inference (requires that average=FALSE and nderivs=0).

rearrange.vars

if rearrange = TRUE, specifies whether monotonization will occur over "quantile", "var" (the variable of interest), or "both".

uniform

a boolean specifying whether inference will be uniform across observations and quantiles or done in a pointwise manner.

se

either "conditional" or "unconditional". Specifies whether standard errors, for pivotal and gaussian processes, will be conditional on the sample or not.

average

if load is not input, if average=TRUE, specifies that inference should be performed on the average value of a derivative (as specified by nderivs) of the conditional quantile function (inference cannot be performed when average=TRUE and nderivs=0). If average=FALSE, inference will be run at each unique value of the variable of interest in the dataset.

nderivs

the number of derivatives of the conditional quantile function upon which inference should be performed.

method

method to be implemented in quantile regressions: passed to function rq.

Value

gaus returns a list containing the following elements:

qfits

a list whose length is equal to the length of taus. Each element is an rq.object returned by rq for the corresponding quantile.

point.est

a matrix containing the point estimates of interest (e.g., the average derivative of the function) for each pair of loading vectors and taus. The matrix is j by i, where j is the number of loading vectors specified (i.e., the number of observations in the dataset if average=FALSE and 1 if average=TRUE) and i is the number of taus specified.

var.unique

a vector containing all values of the covariate of interest with no repeated values.

CI

an array containing the two-sided confidence interval for each pair of loading vectors and taus. The array is j by i by 2, where j is the number of loading vectors specified (i.e., the number of observations in the dataset if average=FALSE and 1 if average=TRUE) and i is the number of taus specified. The final dimension indexes the lower and upper bounds of the confidence interval, respectively.

CI.oneSided

an array containing the one-sided confidence bounds for each pair of loading vectors and taus. The array is j by i by 2, where j is the number of loading vectors specified (i.e., the number of observations in the dataset if average=FALSE and 1 if average=TRUE) and i is the number of taus specified. The final dimension indexes the lower and upper confidence bounds, respectively.

std.error

a matrix containing estimated standard errors for the quantile regression point estimates for each pair of loading vectors and taus. Depending on user selections, these may be conditional on the sample or unconditional. The array is j by i, where j is the number of loading vectors specified (i.e., the number of observations in the dataset if average=FALSE and 1 if average=TRUE) and i is the number of taus specified.

pvalues

a vector containing the p-values for hypothesis tests of three null hypotheses. First, that theta(tau,w) <= 0 for all (tau,w) pairs, where theta is the quantity of interest (e.g., the derivative of the function at each quantile and at each observation). Second, that theta(tau,w) >= 0 for all (tau,w) pairs. Third, that theta(tau,w) = 0 for all (tau,w) pairs.

load

the loading vector or matrix of loading vectors used as data points at which inference was performed and over which hypothesis tests were conducted. If load was not input by the user, load is generated based on average and nderivs.

Author(s)

Michael Lipsitz, Alexandre Belloni, Victor Chernozhukov, Ivan Fernandez-Val

References

Belloni, A., Chernozhukov, V., and I. Fernandez-Val (2011), "Conditional quantile processes based on series or many regressors," arXiv:1105.6154.

See Also

npqr


quantreg.nonpar documentation built on May 2, 2019, 5:40 a.m.