Since this morning, I am trying to convert the Smoothies table within the SensorMineR Dataset using R Studio, but when I do it, the CSV created file is not well tabulated. You can verify it yourself by running the following commands :
smoothiesData <- load('smoothies.rda')
write.csv(get(smoothiesData), file = "smoothies.csv")
You can see that the columns are not well separated, I tried running the following command, but it doesn't change anything
write.csv(get(smoothiesData), file = "smoothies.csv", sep=",")
Can you tell me how should I proceed ?