femlm
estimations in a Latex table.This function aggregates the results of multiple estimations and display them in the form of one Latex table whose rownames are the variables and the columns contain the coefficients and standard-errors.
res2tex(..., se = c("standard", "white", "cluster", "twoway", "threeway",
"fourway"), cluster, digits = 4, pseudo = TRUE, title,
sdBelow = TRUE, drop, order, dict, file, replace = FALSE,
convergence, signifCode = c(`***` = 0.01, `**` = 0.05, `*` = 0.1),
label, aic = FALSE, sqCor = FALSE, subtitles,
showClusterSize = FALSE, bic = TRUE, loglik = TRUE,
yesNoCluster = c("Yes", "No"), keepFactors = FALSE, family,
powerBelow = -5)
There is nothing returned, the result is only displayed on the console or saved in a file.
Used to capture different femlm
objects. Note that any other type of element is discarded. Note that you can give a list of femlm
objects.
Character scalar. Which kind of standard error should be computed: “standard” (default), “White”, “cluster”, “twoway”, “threeway” or “fourway”?
A list of vectors. Used only if se="cluster"
, “se=twoway”, “se=threeway” or “se=fourway”. The vectors should give the cluster of each observation. Note that if the estimation was run using cluster
, the standard error is automatically clustered along the cluster given in femlm
. For one-way clustering, this argument can directly be a vector (instead of a list). If the estimation has been done with cluster variables, you can give a character vector of the dimensions over which to cluster the SE.
Integer, default is 4. The number of digits to be displayed.
Logical, default is TRUE
. Should the pseudo R2 be displayed?
Character scalar. The title of the Latex table.
Logical, default is TRUE
. Should the standard-errors be displayed below the coefficients?
Character vector. This element is used if some variables are not to be displayed. This should be a regular expression (see regex
help for more info). There can be more than one regular expression. Each variable satisfying the regular expression will be discarded.
Character vector. This element is used if the user wants the variables to be ordered in a certain way. This should be a regular expression (see regex
help for more info). There can be more than one regular expression. The variables satisfying the first regular expression will be placed first, then the order follows the sequence of regular expressions.
A named character vector. If provided, it changes the original variable names to the ones contained in the dict
. Example: I want to change my variable named "a" to "$log(a)$" and "b3" to "$bonus^3$", then I used dict=c(a="$log(a)$",b3="$bonus^3$")
.
A character scalar. If provided, the Latex table will be saved in a file whose path is file
.
Logical, default is FALSE
. Only used if option file
is used. Should the Latex table be written in a new file that replaces any existing file?
Logical, default is missing. Should the convergence state of the algorithm be displayed? By default, convergence information is displayed if at least one model did not converge.
Named numeric vector, used to provide the significance codes with respect to the p-value of the coefficients. Default is c("***"=0.01, "**"=0.05, "*"=0.10)
.
Character scalar. The label of the Latex table.
Logical, default is FALSE
. Should the AIC be displayed?
Logical, default is FALSE
. Should the squared correlation be displayed?
Character vector of the same lenght as the number of models to be displayed. If provided, subtitles are added underneath the dependent variable name.
Logical, default is FALSE
. If TRUE
and clusters were used in the models, then the number "individuals" of per cluster is also displayed.
Logical, default is TRUE
.Should the BIC be reported?
Logical, default is TRUE
. Should the log-likelihood be reported?
A character vector of lenght 2. Default is c("Yes", "No")
. This is the message displayed when a given cluster is (or is not) included in a regression.
Logical, default is FALSE
. By default, when factor variables are contained in the estimation, they are printed as if they were a cluster variable. Put to TRUE
to display all the coefficients of the factor variables.
A logical, default is missing. Whether to display the families of the models. By default this line is displayed when at least two models are from different families.
Integer, default is -5. A coefficient whose value is below 10**(powerBelow+1)
is written with a power in Latex. For example 0.0000456
would be written 4.56$\times 10^{-5}$
by default. Setting powerBelow = -6
would lead to 0.00004
in Latex.
Laurent Berge
See also the main estimation function femlm
. Use summary.femlm
to see the results with the appropriate standard-errors, getFE
to extract the cluster coefficients, and the functions res2table
and res2tex
to visualize the results of multiple estimations.
# two fitted models with different expl. variables:
res1 = femlm(Sepal.Length ~ Sepal.Width + Petal.Length +
Petal.Width | Species, iris)
res2 = femlm(Sepal.Length ~ Petal.Width | Species, iris)
# We export the three results in one Latex table,
# with clustered standard-errors:
res2tex(res1, res2, se = "cluster")
# Changing the names & significance codes
res2tex(res1, res2, dict = c(Sepal.Length = "The sepal length", Sepal.Width = "SW"),
signifCode = c("**" = 0.1, "*" = 0.2, "n.s."=1))
Run the code above in your browser using DataLab