I would like to be able to print a tibble without having underling of significant digits. Quite likely, there is an obvious way to do this and I am way off. So any advice is appreciated. (Note that the output shown in the reprex does not show the formatting. A snapshot with the underlining appears below.)
library(tidyverse)
library(pillar)
#>
#> Attaching package: 'pillar'
#> The following object is masked from 'package:dplyr':
#>
#> dim_desc
foo <- tibble(aColumn =c(0.00001, -2))
print(foo)
#> # A tibble: 2 x 1
#> aColumn
#> <dbl>
#> 1 0.00001
#> 2 -2
options(pillar.subtle = FALSE)
print(foo)
#> # A tibble: 2 x 1
#> aColumn
#> <dbl>
#> 1 0.00001
#> 2 -2
Created on 2020-11-11 by the reprex package (v0.3.0)