View source: R/star_cleaning_functions.R
star_add_column_numbers | R Documentation |
Currently this only works for latex. This function is helpful when creating a stargazer table from matrix output as stargazer does not automatically use column numbers for matrices
star_add_column_numbers(
star,
insert.after,
skip.col.1 = TRUE,
add.space = FALSE,
multicol = NULL
)
star |
the |
insert.after |
insert the column numbers after
|
skip.col.1 |
skip the first column? If |
add.space |
add space before the previous column? Defaults to |
multicol |
if not |
an updated version of the stargazer table with column numbers
library(stargazer)
data(mtcars)
star.out <- stargazer(as.matrix(head(mtcars)))
print(star.out)
##Insert column number using default values
star_add_column_numbers(star.out, insert.after = 10)
##Do not skip the first column when creating column numbers
star_add_column_numbers(star.out, insert.after = 10, skip.col.1 = FALSE)
##Add a space before the previous column
star_add_column_numbers(star.out, insert.after = 10, add.space = TRUE)
##Use multicolumns in latex. Could also pass a vector of columns
star_add_column_numbers(star.out, insert.after = 10, multicol = "c")
##Use multicolumn and don't skip the first column
star_add_column_numbers(star.out, insert.after = 10, skip.col.1 = FALSE, multicol = "c")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.