반응형
파이썬 아이리스(load_iris) 데이터 불러오기 sklearn.datasets¶
- 분류문제 해결을 위해 대표적을 사용되는 예시데이터 입니다.
- 머신러닝을 처음 접할 때 지지고 볶던 데이터입니다.
- 데이터 설명은 아래 링크를 통해 보실 수 있습니다.
In [2]:
import pandas as pd
from sklearn.datasets import load_iris
iris = load_iris()
df = pd.DataFrame(iris.data, columns=iris.feature_names)
df['class'] = iris.target
df.tail()
Out[2]:
sepal length (cm) | sepal width (cm) | petal length (cm) | petal width (cm) | class | |
---|---|---|---|---|---|
145 | 6.7 | 3.0 | 5.2 | 2.3 | 2 |
146 | 6.3 | 2.5 | 5.0 | 1.9 | 2 |
147 | 6.5 | 3.0 | 5.2 | 2.0 | 2 |
148 | 6.2 | 3.4 | 5.4 | 2.3 | 2 |
149 | 5.9 | 3.0 | 5.1 | 1.8 | 2 |
[참고]
반응형
'python' 카테고리의 다른 글
파이썬 한국 휴일(holidays) 표시하기 (pytimekr) (2) | 2022.12.17 |
---|---|
[넘파이] axis 옵션 활용한 argmax 함수 사용, 최대값 위치 (0) | 2022.12.16 |
파이토치(torch) 텐서 사이즈 보기 (0) | 2022.12.14 |
[pillow] numpy array to image 어레이를 rgb에 R 값만 사용해서 이미지로 변환 (0) | 2022.12.13 |
matplotlib, plotly 로 파이썬 라인 그래프 그리기 (0) | 2022.12.10 |
댓글