9

.csvこのビデオをフォローできるように、ファイルをインポートしようとしています: R ggplot2GraphicsHistograms

ggplot関連するパッケージを含むすべての適切なパッケージをインストールしました。ビデオの最初の指示はタイプすることを言いますafl.df=read.csv("afl_2003_2007.csv")

そこで、afl_2003_2007.csvファイルをダウンロードして、基本的にファイルを別のディレクトリ(共有ドライブ、次にCドライブなど)に配置する以下のすべてを試しました。私も使ってみsetwdましたが、運が悪かったです。

私はWindowsでRを使用しています。

これが私が試したことと私が得たエラーです:

> 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"
4

3 に答える 3

17

/パスの代わりに使用\します。

afl.df=read.csv("C:/Users/lopez235/Local-NOTBackedUp/R Files Local/afl_2003_2007.csv")
于 2012-05-02T18:33:10.833 に答える
0

\\代わりに\

afl.df=read.csv("C:\\Users\\lopez235\\Local-NOTBackedUp\\R Files Local\\afl_2003_2007.csv")
于 2016-03-03T05:57:26.717 に答える