I am trying to import a column of decimals into csv (part of a dataset) through the function read_delim
. However, the columns with decimal numbers (separated by commas in the original dataset) are coming as integers.
Ex:
- 175,60 appears as 17560
- 98.6851 appears as 986851
Does anyone know how to solve this?