0
RStudio Version 1.4.1717.Macintosh; Intel Mac OS X 12_4_0
I'm trying to load a climate .csv file into R studio. All the data appears in the first column. There are no error message but everything I tried doesn't work.
Here's what I've tried : rouyn2005<-read.csv('historique_rouyn_2005_03.csv', header=TRUE, sep=',') rouyn2005<-read.csv('historique_rouyn_2005_03.csv', header=TRUE, sep=';')
I also tried the steps with the 'reader' package with no success.
I would like to join the .csv file but I don't know how.
I'll show the column names and the first line of the file.
Column names Longitude (x),"Latitude (y)","Nom de la Station","ID climatologique","Date/Heure","Année","Mois","Jour","Qualité des Données","Temp max.(°C)","Temp max. Indicateur","Temp min.(°C)","Temp min. Indicateur","Temp moy.(°C)","Temp moy. Indicateur","DJC (°C)","DJC Indicateur","DJR (°C)","DJR Indicateur","Pluie tot. (mm)","Pluie tot. Indicateur","Neige tot. (cm)","Neige tot. Indicateur","Précip. tot. (mm)","Précip. tot. Indicateur","Neige au sol (cm)","Neige au sol Indicateur","Dir. raf. max. (10s deg)","Dir. raf. max. Indicateur","Vit. raf. max. (km/h)","Vit. raf. max. Indicateur"
First line values -79,03,"48,25","ROUYN","7086716","2005-01-03","2005","01","03","","-6,2","","-22,2","","-14,2","","32,2","","0,0","","","M","","M","0,0","","","","33","","37",""
Hope someone could help me with that!