I want to import these data
Id_points; x; y; z; remarks
1; 2562156.119; 1122172.393; 425.627; capteur
2; 2562155.844; 1122172.412; 420.709;
I use the following code
S1<-read.csv2('section_raw_data.csv', header=TRUE, sep = ";", dec = ".", fill=TRUE, colClasses=c('integer', 'double', 'double','double','character') )
The resulting dataframe is:
Id_points; x; y; z; remarks
1; 2562156; 1122172; 425.627; capteur
2; 2562155; 1122172; 420.709;
Does anyone have an idea why the first 2 double number are truncated to the decimal ?