You are on page 1of 1

Closing an R document

q(save = "default", status = 0, runLast = TRUE)


loading a document

load (c:/document directory/name.Rdata)


to save a document
save.image()
To view an already loaded dataset
View()
To remove an already loaded document
rm()
To display the data in your file in the console
str()
To export your file to an excel file from R
write.csv(name of file , file=name I want to save file as.csv)

You might also like