Я пытаюсь импортировать файл Excel (.csv), который я скачал из Kaggle, в SAS, используя следующие коды:
PROC IMPORT OUT= Sasuser.HeartDisease DATAFILE= "C:\Users\PCPCPC\Documents\StatDatas\heart"
DBMS=excel REPLACE;
SHEET="auto";
GETNAMES=YES;
RUN;
Однако выдает эту ошибку:
931 PROC IMPORT OUT= Sasuser.HeartDisease DATAFILE= "C:\Users\PCPCPC\Documents\StatDatas\heart.xlsx"
932 DBMS=excel REPLACE;
933 SHEET="auto";
934 GETNAMES=YES;
935 RUN;
ERROR: Unable to open file C:\Users\PCPCPC\Documents\StatDatas\heart.xlsx. It does not exist or it
is already opened exclusively by another user, or you need permission to view its data.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE IMPORT used (Total process time):
real time 0.35 seconds
cpu time 0.29 seconds
Мои файлы в файловой системе выглядят так: ![enter image description here](https://i.stack.imgur.com/4Ialj.png)
Вот свойства файла: ![enter image description here](https://i.stack.imgur.com/MShqq.png)