1 | initial version |
This is not an answer, but a workaround. Putting it here just in case no one comes up with a real solution.
Since I own a webserver, I put the file there. Then I can call it from R and import the data. Quite different from using files within the sagemath cloud, but it works to import the data into my cloud worksheet.
data <- read.csv(file="http://share.website.com/filename.csv", header=TRUE, sep=';')
2 | turned on code format |
This is not an answer, but a workaround. Putting it here just in case no one comes up with a real solution.
Since I own a webserver, I put the file there. Then I can call it from R and import the data. Quite different from using files within the sagemath cloud, but it works to import the data into my cloud worksheet.
data <- read.csv(file="http://share.website.com/filename.csv", header=TRUE,