We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tab_row_group()
library(gt) tmp <- tibble( group = c("A", "A"), variable = c("B", "C"), ) |> gt( rowname_col = "Variable", row_group_as_column = TRUE ) |> # remove full_name column tab_row_group( label = "Group", rows = 1:2 ) tmp |> as_latex() #> Error in if (any(colwidth_df$unspec < 1L)) { : #> missing value where TRUE / FALSE is required.
The error would disappear if unspec was added here, but it produces incorrect output. (The code errors with html output)
unspec
gt/R/utils_render_latex.R
Line 1723 in 1a3b8aa
Example from #1557
The text was updated successfully, but these errors were encountered:
Closing for now. This issue doesn't add much
Sorry, something went wrong.
rich-iannone
No branches or pull requests
The error would disappear if
unspec
was added here, but it produces incorrect output. (The code errors with html output)gt/R/utils_render_latex.R
Line 1723 in 1a3b8aa
Example from #1557
The text was updated successfully, but these errors were encountered: