pillar icon indicating copy to clipboard operation
pillar copied to clipboard

Integrate num() with datatable?

Open krlmlr opened this issue 2 years ago • 0 comments

library(tibble)

data <- tibble(x = num(1:3, digits = 5))
data
#> # A tibble: 3 × 1
#>           x
#>   <num:.5!>
#> 1   1.00000
#> 2   2.00000
#> 3   3.00000

DT::datatable(data)

Created on 2021-12-29 by the reprex package (v2.0.1)

krlmlr avatar Dec 29 '21 05:12 krlmlr