data -read_excelCUsers27773DesktopBostonHousing3csvError U used without hex digits in character string input123
The error message is caused by the backslashes in the file path. In R, backslashes are escape characters, so you need to use double backslashes or forward slashes to specify file paths.
Try using one of the following file paths:
- Double backslashes:
data <- read_excel("C:\\Users\\27773\\Desktop\\BostonHousing3.csv")
- Forward slashes:
data <- read_excel("C:/Users/27773/Desktop/BostonHousing3.csv")
原文地址: https://www.cveoy.top/t/topic/hYVa 著作权归作者所有。请勿转载和采集!