Kirill Müller
Kirill Müller
We should print the header early. It might not change much without optimizing display of numbers, because `pillar_shaft.numeric()` is the main bottleneck.
Should it be off by default in non-interactive environments?
Taking a look now.
Apologies for the trouble it causes, waiting until after the conf would have been better here. Updated the NEWS file.
Does #577 work for you? I can push a fix to CRAN tomorrow.
In the main branch now, does it work for you? Is the option name `"pillar.advice"` good?
pillar 1.8.1 on CRAN now.
Interesting idea. Generally, I tend to always address columns by name, because addressing by column index can be very brittle: insert one column, and the indexes are off. I do...
It is possible to fix the number of decimal digits shown in pillar 1.6.0 with `num()`: ``` r tibble::tibble(x = pillar::num(10.05 * c(100, 10, 1, 0.1), digits = 2)) #>...
Maybe we could support negative numbers for the `"pillar.sigfig"` option to activate this? We could then also flip the meaning of the `digits` argument: negative `digits` always shows trailing zeros,...