David Hugh-Jones
David Hugh-Jones
I think this would play well with https://github.com/hughjonesd/huxtable .
It would be great if formattable were able to output TeX as well as HTML. I've been waiting for a solid table output solution that works across the different output...
Example: ``` > assertthat::assert_that(is.numeric("foo") || is.flag("foo")) Error: "foo" is not a numeric or integer vector or "foo" is not a flag (a length one logical vector). ``` This is incorrect....
**Describe what is missing** Sometimes people want to have group headers (e.g. Species = Setosa, ...). **Describe your proposed solution** A function `column_to_headers(ht, col, ...)` which deletes the column and...
…frame replace methods
`extend = FALSE` by default is just a PITA and constantly leads to surprises. Also, let `glance` take a data frame - a common pattern is using glance on the...
Split off from the other beamer bug. See https://tex.stackexchange.com/questions/404872/are-beamer-hhline-and-tablexcolor-incompatible#comment1009168_404903 MWE: --- title: "Untitled" author: "David Hugh-Jones" date: "27/10/2017" output: beamer_presentation: keep_tex: true header-includes: - \usepackage{array} - \usepackage{caption} - \usepackage{graphicx} -...
This would let users do e.g. `add_footnote(1, 3, "Footnote for row 1 column 3")` and would create a subscript in the appropriate place. tablenotes and footnotes are defined by threeparttable....
Here's an example: ``` iris %>% group_by(Species) %>% slice(1:5) %>% as_hux() %>% merge_repeated_rows(everywhere, "Species") %>% quick_pdf() ``` `merge_repeated_rows` isn't much help unless I can fix this.
For a reason why, see https://luisdva.github.io/rstats/spreadsheets-mf/ * Excel: (a) formatting may have meaning. (b) May want to "round-trip" spreadsheets. But maybe `openxlsx` can do this already? * Word: cf. `redoc`....