fixest_multi
objectsComputes the confidence intervals of parameter estimates for fixest
's multiple estimation objects (aka fixest_multi
).
# S3 method for fixest_multi
confint(
object,
parm,
level = 0.95,
vcov = NULL,
se = NULL,
cluster = NULL,
ssc = NULL,
...
)
It returns a data frame whose first columns indicate which model has been estimated. The last three columns indicate the coefficient name, and the lower and upper confidence intervals.
A fixest_multi
object obtained from a multiple estimation in fixest
.
The parameters for which to compute the confidence interval (either an integer vector OR a character vector with the parameter name). If missing, all parameters are used.
The confidence level. Default is 0.95.
Versatile argument to specify the VCOV. In general, it is either a character scalar equal to a VCOV type, either a formula of the form: vcov_type ~ variables
. The VCOV types implemented are: "iid", "hetero" (or "HC1"), "cluster", "twoway", "NW" (or "newey_west"), "DK" (or "driscoll_kraay"), and "conley". It also accepts object from vcov_cluster
, vcov_NW
, NW
, vcov_DK
, DK
, vcov_conley
and conley
. It also accepts covariance matrices computed externally. Finally it accepts functions to compute the covariances. See the vcov
documentation in the vignette.
Character scalar. Which kind of standard error should be computed: “standard”, “hetero”, “cluster”, “twoway”, “threeway” or “fourway”? By default if there are clusters in the estimation: se = "cluster"
, otherwise se = "iid"
. Note that this argument is deprecated, you should use vcov
instead.
Tells how to cluster the standard-errors (if clustering is requested). Can be either a list of vectors, a character vector of variable names, a formula or an integer vector. Assume we want to perform 2-way clustering over var1
and var2
contained in the data.frame base
used for the estimation. All the following cluster
arguments are valid and do the same thing: cluster = base[, c("var1", "var2")]
, cluster = c("var1", "var2")
, cluster = ~var1+var2
. If the two variables were used as fixed-effects in the estimation, you can leave it blank with vcov = "twoway"
(assuming var1
[resp. var2
] was the 1st [resp. 2nd] fixed-effect). You can interact two variables using ^
with the following syntax: cluster = ~var1^var2
or cluster = "var1^var2"
.
An object of class ssc.type
obtained with the function ssc
. Represents how the degree of freedom correction should be done.You must use the function ssc
for this argument. The arguments and defaults of the function ssc
are: adj = TRUE
, fixef.K="nested"
, cluster.adj = TRUE
, cluster.df = "min"
, t.df = "min"
, fixef.force_exact=FALSE)
. See the help of the function ssc
for details.
Not currently used.
base = setNames(iris, c("y", "x1", "x2", "x3", "species"))
est = feols(y ~ csw(x.[,1:3]) | sw0(species), base, vcov = "iid")
confint(est)
# focusing only on the coefficient 'x3'
confint(est, "x3")
# the 'id' provides the index of the estimation
est[c(3, 6)]
Run the code above in your browser using DataLab