(f) Write the first six lines of a hypothetical external data file named data.csv that will be read without error by the following R command:
mydata <- read.table ("data.csv" , skip=3 , header=FALSE , sep="," ,
colClasses=c ("character" , rep ("numeric" , 3 ) ) )
Lines of data.csv:
1 :
2 :
3 :
4 :
5 :
6 :
Random data
random data
random data
col1Row1,1.1,1.2,1
col1Row2,5.6,6,2
col1Row3,2.1,8.9,3
Get Answers For Free
Most questions answered within 1 hours.