Answers for "reading data file into r"

1

how to read file in r

df <- read.table("File_name.csv",sep=',',header=TRUE,stringsAsFactors=FALSE)
#or
df <- read.csv('Iris.csv')
Posted by: Guest on September-11-2021

Code answers related to "reading data file into r"

Browse Popular Code Answers by Language