2016-09-14 16 views
0

SASデータファイル(sas7bdat形式)をRに読み込みたいです。sas7bdatパッケージを使用しようとしましたが、エラーが発生しました。SASデータファイルをRにインポート

CODE:

x <- read.sas7bdat("C:\Users\petas\Desktop\airline.sas7bdat") 

ERROR:

'\U' used without hex digits in character string starting ""C:\U"

誰かがこれで私を助けることができますか?前もって感謝します。

+0

「ライブラリ(避難所); read_sas( "C:....") ' – akrun

答えて

1

は前方使用してみてくださいスラッシュ:

x <- read.sas7bdat("C:/Users/petas/Desktop/airline.sas7bdat") 
1

havenライブラリ

install.packages("haven") 
library(haven) 

url <- "C:\\Users\\petas\\Desktop\\airline.sas7bdat" 

x <- read_sas(url) 

If you use windows than you need to use instead "\" use "\\" or Unix/linux style "/" . Easiest will be to use forward slashes so will be compatible in the future with the path of any OS, in your case Error:'\U' used without hex digits in character string starting ""C:\U" is due the use of single backslashes instead double backslashes.

を使用しての例を投稿、それがお役に立てば幸いです。

関連する問題