I'm importing a CSV file to do some data work, but the imported data is either rounded to three digits. For example,
Imported data
time
-75.1
-25.1
-5.53
7.43
17.9
65.7
123
558
767
1130
1240
CSV data file
time
-75.1245
-25.152345
-5.535432
7.4323456
17.92345
65.75423
123.5234
558.6534
767.6547
1134.2346
1242.23456
How can I get the data in full or control the rounding? I'm importing simply as shown below.
allData = Import["C:\\data.csv"];
Thanks in advance.