You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
write_csv2 and write_excel_csv2 don't preserve the precision of decimal numbers in exported csv files, regardless of the current value of the getOption("digits"), as opposed to write_csv and write_excel_csv.
Since this is happening because of the transformation performed by change_decimal_separator, I hope this counts as a reproducible example:
write_csv2
andwrite_excel_csv2
don't preserve the precision of decimal numbers in exported csv files, regardless of the current value of thegetOption("digits")
, as opposed towrite_csv
andwrite_excel_csv
.Since this is happening because of the transformation performed by
change_decimal_separator
, I hope this counts as a reproducible example:For reference, both
utils::write.csv2
anddata.table::fwrite
with argumentsdec = ","
andsep = ";"
also preserve the decimal numbers.The text was updated successfully, but these errors were encountered: