Description Usage Arguments Examples
Improvement to footnotes from stargazer
function. Results vary with output from kable
, although the kable endnotes by default tend to be better formatted.
Used with capture.output()
. When using, notes made with the original function should not be used.
1 | add_endnote(table, note, size_in_inches = 6, rm.stargazer.stars = TRUE)
|
note |
Endnote you want to add to the bottom of the table |
size_in_inches |
How many inches long the endnote should be |
rm.stargazer.stars |
TRUE/FALSE. Whether to remove the default stargazer Note: that includes the starvalues. |
1 2 3 | my_table_rough <- capture.output(stargazer(mtcars))
my_table <- add_endnote(table = my_table_rough, note = "my endnote is very long", size_in_inches = 6, rm.stargazer.stars = TRUE)
print_table(table)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.