in R, when using
write.csv(df, file = "/path/dataframeX.csv",row.names=FALSE, fileEncoding = "UTF-8")
and then reading the csv with
read.csv("/path/dataframeX.csv", header = T, na.strings=c(""," ","NA"))
it changes my point separated values to comma separated values (e.g. 4.32 becomes 4,32). Is there a way to avoid this? What mistake am I doing?
edit: solved - add dec = ","
to the read.csv()
Thank you very much and best regards,
Jimmy