Stanford MS&E 226 – Fundamentals of Data ScienceDatasets
Notes
library(foreign) indata = read.dta(<filename>) where <filename> is the data file you wish to read in.
indata = read.table(<filename>, header = TRUE) where <filename> is the data file you wish to read in. |