makeTable {ivdoctr} | R Documentation |
Generates table of parameter estimates given user restrictions and data
Description
Generates table of parameter estimates given user restrictions and data
Usage
makeTable(..., output)
Arguments
... |
Arguments of TeX code for individual examples to be combined into a single table |
output |
File name to write |
Value
LaTeX code that generates output table with regression results
Examples
library(ivdoctr)
endog <- c(0, 0.9)
meas <- c(0.6, 1)
colonial_example1 <- ivdoctr(y_name = "logpgp95", T_name = "avexpr",
z_name = "logem4", data = colonial,
controls = NULL, robust = FALSE,
r_TstarU_restriction = endog,
k_restriction = meas,
example_name = "Colonial Origins")
makeTable(colonial_example1, output = file.path(tempdir(), "colonial.tex"))
[Package ivdoctr version 1.0.1 Index]