Use of save versions prior to 2 is deprecated in R

When you run load(“iris.csv”) you might get the error, “Use of save versions prior to 2 is deprecated in R”

R might also shoot you this error when you run:

  1. source(“iris.csv”)
  2. iris<-readRDS(“iris.csv”)

Try, iris<-read.csv(“iris.csv”) and it should work.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.