Learn R Programming

frmpd (version 1.1.0)

frmpd: Fitting Panel Data Fractional Regression Models

Description

frmpd is used to fit panel data regression models when the dependent variable has a bounded, fractional nature.

Usage

frmpd(id, time, y, x, z, var.endog, x.exogenous = T, lags, start, type, GMMww.cor = T, link = "logit", intercept = T, table = T, variance = T, var.type = "cluster", tdummies = F, bootstrap = F, B = 200, ...)

Arguments

id
a numeric vector identifying the cross-sectional units.
time
a numeric vector identifying the time periods in which the cross-sectional units were observed.
y
a numeric vector containing the values of the response variable.
x
a numeric matrix, with column names, containing the values of all covariates (exogenous and endogenous).
z
a numeric matrix, with column names, containing the values of all exogenous variables (covariates and external instrumental variables). Only required in case of endogenous explanatory variables.
var.endog
a numeric vector containing the values of the endogenous covariate (or of some transformation of it), which will be used as dependent variable in the linear reduced form assumed for application of the QMLcre estimator. Only required for this estimator.
x.exogenous
a logical value indicating whether all explanatory variables are assumed to be exogenous or not.
lags
a logical value indicating whether the first lags of x or z should be used as instruments for x. Defaults to TRUE for the GMMww and GMMc estimators and to FALSE for the remaining estimators. The GMMcre and QMLcre estimators do not admit lagged instruments.
start
a numeric vector containing the initial values for the parameters to be optimized. Optional.
type
a description of the estimator to compute: GMMww, GMMc, GMMbgw, GMMpfe, GMMcre, GMMpre or QMLcre.
GMMww.cor
a logical value indicating whether each explanatory variable should be transformed in deviations from its overall mean before computing the GMMww estimator.
link
a description of the link function to use. Available options for all GMM estimators: logit and cloglog. Only option for the QMLcre estimator: probit.
intercept
a logical value indicating whether the model should include a constant term or not. Only relevant for the GMMpre estimator.
table
a logical value indicating whether a summary table with the regression results should be printed.
variance
a logical value indicating whether the variance of the estimated parameters should be calculated. Defaults to TRUE whenever table = TRUE.
var.type
a description of the type of variance of the estimated parameters to be calculated. Options are cluster, the default, and robust. In overidentified models, it also affects the parameter estimates via the GMM weighting matrix.
tdummies
a logical value indicating whether time dummies should be included among the model explanatory variables.
bootstrap
a logical value indicating whether bootstrap should be used in the estimation of the parameter standard errors.
B
the number of bootstrap replications.
...
Arguments to pass to nlminb.

Value

frmhpd returns a list with the following elements:In case of an overidentifying model, the following element is also returned:If variance = TRUE or table = TRUE and the algorithm converged successfully, the previous list also contains the following elements:

Details

frmpd computes the GMM estimators proposed in Ramalho and Ramalho (2016) for panel data fractional regression models with both time-variant and time-invariant unobserved heterogeneity and endogeneous covariates: GMMww, GMMc, GMMbgw, GMMpfe, GMMcre and GMMpre. In addition, frmpd also computes QMLcre, which was proposed by Papke and Wooldridge (2008) and Wooldridge (2010). For overidentified models, frmpd calculates Hansen's J statistic.

References

Papke, L. and Wooldridge, J.M. (2008), "Panel data methods for fractional response variables with an application to test pass rates", Journal of Econometrics, 145(1-2), 121-233.

Ramalho, E.A. and J.J.S. Ramalho (2016), "Exponential regression of fractional-response fixed-efects models with an application to firm capital structure", mimeo.

Wooldridge, J.M. (2010), "Correlated random effects models with unbalanced panels", mimeo.

See Also

frm, for fitting standard cross-sectional fractional regression models. frmhet, for fitting cross-sectional fractional regression models with unobserved heterogeneity.

Examples

Run this code
id <- rep(1:50,each=5)
time <- rep(1:5,50)
NT <- 250

XBu <- rnorm(NT)
y <- exp(XBu)/(1+exp(XBu))

X <- cbind(rnorm(NT),rnorm(NT))
dimnames(X)[[2]] <- c("X1","X2")

Z <- cbind(rnorm(NT),rnorm(NT),rnorm(NT))
dimnames(Z)[[2]] <- c("Z1","Z2","Z3")

# Exogeneity, no lags, no time dummies, clustered standard errors, GMMbgw estimator
frmpd(id,time,y,X,type="GMMbgw")

# Lagged covariates and instruments, robust standard errors, GMMww estimator
frmpd(id,time,y,X,lags=TRUE,type="GMMww",var.type="robust")

# Endogeneity, time dummies, GMMpfe estimator
frmpd(id,time,y,X,Z,x.exogenous=FALSE,type="GMMpfe",tdummies=TRUE)

# Standard errors based on 100 bootstrap samples, QMLcre estimator (not run)
#frmpd(id,time,y,X,Z,X[,1],x.exogenous=FALSE,type="QMLcre",link="probit",bootstrap=TRUE,B=100)

## See the website http://evunix.uevora.pt/~jsr/FRM.htm for more examples.

Run the code above in your browser using DataLab