728x90
# SAS 에서 인터넷으로 데이터 불러오기
R 에서 인터넷으로 데이터 불러오기
1. SAS 에서 인터넷으로 데이터 불러오기
filename iris URL "https://archive.ics.uci.edu/ml/ machine-learning- databases/ iris/iris.data" ;
DATA a1;
LENGTH x1-x4 8. species $15;
infile iris dlm="," ;
input x1-x4 species $ ;
PROC PRINT;
RUN;
(1) filename iris URL "https://archive.ics.uci.edu/ml/ machine-learning- databases/ iris/iris.data" ;
유명한 데이터 repository 인 UCI 에서 iris 데이터를 불러옴
(2) DATA a1; # SAS 데이터셋 이름 지정
(3) LENGTH x1-x4 8. species $15;
붓꽃의 꽃받침과 꽃잎의 길이와 폭... 붓꽃의 종류 변수의 길이 지정
(4) infile iris dlm="," ;
데이터가 구분자 , 로 분리되어 있음
(4) input x1-x4 species $ ; # 변수명 지정
PROC PRINT;
RUN;
2. R 에서 인터넷으로 데이터 불러오기
R에서는 간단하게 불러올 수 있습니다.
read.csv("archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data"
'SAS연습 200제 > 3. 외부파일다루기' 카테고리의 다른 글
(S)제04강(01)_텍스트파일 다루기(SAS) - 메뉴 이용 (0) | 2021.12.13 |
---|---|
(S,R)제05강(09)_SAS 시스템파일 이용하기 - 국민건강영양조사 sas7bdat (1) | 2021.12.13 |
(P)제05강(09)_UCI Irvine Machine Learning Reposi.. 이용 (0) | 2021.12.13 |
(P)제05강_손글씨 파일 읽어오기 - sklearn, MNIST (0) | 2020.12.18 |
(P)제05강_파이썬으로 SAS 파일불러오기 (0) | 2020.12.14 |