
npqr(formula, data, basis = NULL, var, taus = c(0.25, 0.5, 0.75),
print.taus = NULL, B = 200, nderivs = 1, average = T,
load = NULL, alpha = 0.05, process = "pivotal", rearrange = F,
rearrange.vars="quantile", uniform = F, se = "unconditional",
printOutput = T, method = "fn")
formula
and var
arguments. Observations in data
used to construct the loading vector (either manually or automatically) will be hereafter referred to as w.
fda
), an orthogonal polynomial basis of class "poly"
, or a factor variable that will be used to estimate the effect of var
.
data
whose values will be used, in combination with basis
, to create the vectors used in the nonparametric part of the model.
taus
), estimates for which will be printed as output.
load
is not input, the number of derivatives of the conditional quantile function upon which inference should be performed.
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.
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)$).
process = "none"
, specifies that inference should not be performed).
average=FALSE
and nderivs=0
).
rearrange = TRUE
, specifies whether monotonization will occur over "quantile", "var" (the variable of interest), or "both".
rq
.
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.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.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.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.taus
specified. Each element of the list contains the coefficients from the nonparametric quantile regression performed at the corresponding taus
.load
was not input by the user, load
is generated based on average
and nderivs
.load
. If load
is not specified, the loading vector will be calculated automatically using average
and nderivs
as parameters.Note that derivatives calculated automatically will always be with respect to the nonparametric variable of interest, var
. This means that, for example, if var=logprice
, where logprice
is the natural logarithm of price, then the derivative will be taken with respect to logprice
, not with respect to price
. Specification of var
will not admit mathematical functions such as log
. Specification of formula
will admit some functions (e.g., log
, multiplication of covariates, interaction of covariates). However, formula will not admit some formula operators; in particular, factor variables must be saved as new variables prior to entry into formula. See the vignette for more information.
Koenker, R. (2011), "Additive models for quantile regression: Model selection and confidence bandaids," Brazilian Journal of Probability and Statistics 25(3), pp. 239-262.
Koenker, R. and G. Bassett (1978): "Regression Quantiles," Econometrica 46, pp. 33-50.
Ramsay, J.O., Wickham, H., Graves, S., and G. Hooker (2013), "fda: Functional Data Analysis," R package version 2.3.6, http://CRAN.R-project.org/package=fda
rq
data(india)
## Subset the data for speed
india.subset<-india[1:1000,]
formula=cheight~mbmi+breastfeeding+mage+medu+edupartner
basis.bsp <- create.bspline.basis(breaks=quantile(india$cage,c(0:10)/10))
n=length(india$cage)
B=500
alpha=.95
taus=c(1:24)/25
print.taus=c(1:4)/5
## Inference on average growth rate
piv.bsp <- npqr(formula=formula, data=india.subset, basis=basis.bsp,
var="cage", taus=taus, print.taus=print.taus, B=B, nderivs=1,
average=1, alpha=alpha, process="pivotal", rearrange=FALSE,
uniform=TRUE, se="unconditional", printOutput=TRUE, method="fn")
yrange<-range(piv.bsp$CI)
xrange<-c(0,1)
plot(xrange,yrange,type="n",xlab="",ylab="Average Growth (cm/month)")
lines(piv.bsp$taus,piv.bsp$point.est)
lines(piv.bsp$taus,piv.bsp$CI[1,,1],col="blue")
lines(piv.bsp$taus,piv.bsp$CI[1,,2],col="blue")
title("Average Growth Rate")
## Estimation on average growth acceleration with no inference
piv.bsp.secondderiv <- npqr(formula=formula, data=india.subset,
basis=basis.bsp, var="cage", taus=taus, print.taus=print.taus,
B=B, nderivs=2, average=0, alpha=alpha, process="none",
se="conditional", rearrange=FALSE, printOutput=FALSE, method="fn")
xsurf<-as.vector(piv.bsp.secondderiv$taus)
ysurf<-as.vector(piv.bsp.secondderiv$var.unique)
zsurf<-t(piv.bsp.secondderiv$point.est)
persp(xsurf, ysurf, zsurf, xlab="Quantile", ylab="Age (months)",
zlab="Growth Acceleration", ticktype="detailed", phi=30,
theta=120, d=5, col="green", shade=0.75, main="Growth Acceleration")
Run the code above in your browser using DataLab