Our data warehouse started using integer64 values for our keys and without specifying, these come through as col_double(). We want to reduce errors when saving and reading in the data and I wanted to know if vroom could guess at the col_big_integer() column type for us? I'm afraid folks on the team won't remember to specify it and they will get duplicate values in their analyses. For example, dplyr::n_distinct(visit_key) would show 1 unique value.
Our data warehouse started using integer64 values for our keys and without specifying, these come through as
col_double()
. We want to reduce errors when saving and reading in the data and I wanted to know ifvroom
could guess at thecol_big_integer()
column type for us? I'm afraid folks on the team won't remember to specify it and they will get duplicate values in their analyses. For example,dplyr::n_distinct(visit_key)
would show 1 unique value.