728x90
UCI Irvine Machine Learning Repository 이용하여 버섯데이터(mushroom.csv) 와 붓꽃데이터(iris.csv) 불러오기
UCI Irvine Machine Learning Repository 에 가시면 머신러닝 실습을 위한 수많은 데이터들을 볼 수 있습니다.
## (7.1) mushroom 버섯데이터 불러오기
import urllib.request as req
local = "mush.csv"
url="https://archive.ics.uci.edu/ml/machine-learning-databases/mushroom/agaricus-lepiota.data"
req.urlretrieve(url,local)
UCI Machine Learning Repository 화면입니다.
Download: Data Folde 를 클릭
"agaricu-lepiota.data"를 클릭하면 다운로드 받을 수 있습니다.
mushroom.csv 의 모습
## (7.1) iris 붓꽃데이터 불러오기
local = "iris.csv"
url="https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data"
req.urlretrieve(url,local)
UCI Machine Learning Repository 화면입니다.
Download: Data Folde 를 클릭
"iris.data"를 클릭하면 다운로드 받을 수 있습니다.
iris.csv
'SAS연습 200제 > 3. 외부파일다루기' 카테고리의 다른 글
(S,R)제05강(09)_SAS 시스템파일 이용하기 - 국민건강영양조사 sas7bdat (1) | 2021.12.13 |
---|---|
(S,R)제04강(09)인터넷으로 iris 데이터 불러오기 (0) | 2021.12.13 |
(P)제05강_손글씨 파일 읽어오기 - sklearn, MNIST (0) | 2020.12.18 |
(P)제05강_파이썬으로 SAS 파일불러오기 (0) | 2020.12.14 |
(P)제05강_파이썬 iris 데이터 이용하기 (0) | 2020.12.14 |