mgacc0

Results 5 comments of mgacc0

Exactly. I would find of interest that kable could generate output in format "multiline": https://pandoc.org/MANUAL.html#extension-multiline_tables

Thanks @coatless. You are telling me that I could write ``` r countrypops %>% filter(country_name == "Mongolia") %>% slice_tail(n = 5) %>% gt() %>% cols_label(.list = structure(as.list(str_remove( colnames(.), "country_" )),...

I'm from Europe. Internally (on scripts and storage) I often use decimal point. But for reports and output sometimes it's a requirement to use decimal comma. There are a lot...

`adorn_pct_formatting` converts numeric to string. So it should be the only one where it's needed. As a reference: `number` from scales package https://github.com/r-lib/scales/blob/master/R/label-number.r internally calls the `base::format` function.

Use `getOption("OutDec")` as the default value for `decimal.mark` parameter: ``` r adorn_pct_formatting