我想將SAS數據文件(sas7bdat格式)讀入R.我嘗試過使用sas7bdat軟件包,但最終出現錯誤。將SAS數據文件導入R
CODE:
x <- read.sas7bdat("C:\Users\petas\Desktop\airline.sas7bdat")
錯誤:
'\U' used without hex digits in character string starting ""C:\U"
有人可以幫助我?提前致謝。
我想將SAS數據文件(sas7bdat格式)讀入R.我嘗試過使用sas7bdat軟件包,但最終出現錯誤。將SAS數據文件導入R
CODE:
x <- read.sas7bdat("C:\Users\petas\Desktop\airline.sas7bdat")
錯誤:
'\U' used without hex digits in character string starting ""C:\U"
有人可以幫助我?提前致謝。
嘗試使用正斜槓:
x <- read.sas7bdat("C:/Users/petas/Desktop/airline.sas7bdat")
使用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 useforward 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.
希望它可以幫助發佈例子。
嘗試'library(haven); read_sas(「C:....」)' – akrun