I am new to R Studio so this will probably be a simple question to answer. How do I create a .rda file?
For example if you were saving the iris file:
iris save(iris, file = "iris.rda") # save file rm(iris) # remove load("iris.rda") # load from file
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed. If you have a query related to it or one of the replies, start a new topic and refer back with a link.