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
Describe the bug The gist for use_kable_in_shiny generates a Warning: Error in htmlTable_add_header_above: The new header row you provided has a total of 12 columns but the original kable_input has 13. see https://cran.r-project.org/web/packages/kableExtra/vignettes/use_kable_in_shiny.html
This can be resolved by inserting tibble::remove_rownames() %>% in line after mutate(car = rownames(.)) %>%
tibble::remove_rownames() %>%
mutate(car = rownames(.)) %>%
To Reproduce
[# code to reproduce the bug.](shiny::runGist("https://gist.github.com/haozhu233/9e675e1a8a1bb4744f9ebc9246a2366b"))
The text was updated successfully, but these errors were encountered:
As suggested in #854
3e46c17
Thanks, I've fixed the code in the vignette. I don't seem to have permissions to fix the gist, so the link still points to the bad version.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
The gist for use_kable_in_shiny generates a Warning: Error in htmlTable_add_header_above: The new header row you provided has a total of 12 columns but the original kable_input has 13. see https://cran.r-project.org/web/packages/kableExtra/vignettes/use_kable_in_shiny.html
This can be resolved by inserting
tibble::remove_rownames() %>%
in line aftermutate(car = rownames(.)) %>%
To Reproduce
The text was updated successfully, but these errors were encountered: