When I convert the character column to a numeric one in the example below, I do not see all the numbers. How can I display all the decimal places?
library(dplyr)
df <- tibble(
x_as_character = c("0.1232456789", "0.9101112131415")
) %>%
mutate(x_as_numeric = as.numeric(x_as_character))
df
#> # A tibble: 2 x 2
#> x_as_character x_as_numeric
#> <chr> <dbl>
#> 1 0.1232456789 0.123
#> 2 0.9101112131415 0.910