I am trying to read in a CSV file in Excel which contains decimals with several decimal places. My procedure:
- Click Data upper Tab
- Click From Text/CSV
- Choose my file that I want to read in
- Click Load
If I open the csv with a text editor, the file looks as follows:
Label pre-annotated,Label self-annotated,Begin pre-annotated,End pre-annotated,Begin self-annotated,End self-annotated,Difference Begin,Difference End
P,P,0,3.36998958333333,0,3.36998958333333,0,0.0
P,P,5.50998958333333,5.85998958333333,5.50998958333333,5.85998958333333,0.0,0.0
P,P,6.37998958333333,6.67998958333333,6.37998958333333,6.67998958333333,0.0,0.0
P,P,6.80998958333333,7.80998958333333,6.80998958333333,7.80998958333333,0.0,0.0
P,COND1,10.3299895833333,10.36996875,10.3299895833333,10.517009268921914,0.0,0.14704051892191394
where the decimal places start with a dot. However, after loading it into Excel the dots are not recognized and the table looks as follows:
I tried changing the Excel decimal separator to dot and comma, but it did not help. Even when changing decimal separator to dot in Windows, it does not work.
Any help would be appreciated.
,
as decimal separator & not.
). Try tweak on that (in your PC) or do the import @ Excel online instead. – p._phidot_