I'm new to R and I'm trying to figure out how to import a csv file so that I can follow this video: R ggplot2 Graphical histograms .
I have installed all suitable packages, including ggplot and related packages. The first instruction in the video says: afl.df=read.csv("afl_2003_2007.csv")
So, I downloaded the afl_2003_2007.csv file and tried everything that was basically, inserting the file into different directories (shared drive and then drive c). I also tried using setwd and no luck.
Explanation: I use R in windows
Please, help. Dan
WHAT I SAID AND ERRORS I RECEIVED:
> afl.df=read.csv("afl_2003_2007.csv") Error in file(file, "rt") : cannot open the connection In addition: Warning message: In file(file, "rt") : cannot open file 'afl_2003_2007.csv': No such file or directory > afl.df=read.csv("\\the-lab.llnl.gov\llnlusers1\lopez235\Data\Documents\Dashboards,HRBI, Visulizations and Analytics\Math and Statistics and Predictive Modeling1\R Programming\afl_2003_2007.csv") Error: '\l' is an unrecognized escape in character string starting "\\the-lab.llnl.gov\l" > afl.df=read.csv("C:\Users\lopez235\Local-NOTBackedUp\R Files Local\afl_2003_2007.csv") Error: '\U' used without hex digits in character string starting "C:\U" > setwd("\\the-lab.llnl.gov\llnlusers1\lopez235\Data\Documents\Dashboards,HRBI, Visulizations and Analytics\Math and Statistics and Predictive Modeling1\R Programming\afl_2003_2007.csv") Error: '\l' is an unrecognized escape in character string starting "\\the-lab.llnl.gov\l" > setwd("\\the-lab.llnl.gov\llnlusers1\lopez235\Data\Documents\Dashboards,HRBI, Visulizations and Analytics\Math and Statistics and Predictive Modeling1\R Programming") Error: '\l' is an unrecognized escape in character string starting "\\the-lab.llnl.gov\l" > setwd("C:\Users\lopez235\Local-NOTBackedUp\R Files Local") Error: '\U' used without hex digits in character string starting "C:\U"
import r
daniellopez46 May 02 '12 at 16:33 2012-05-02 16:33
source share