개요
- Iris flower data set
- 붓꽃 데이터셋
- 1936년, 로널드 피셔가 제시한 다변수 데이터셋
Python
import pandas as pd
df = pd.read_csv("https://raw.githubusercontent.com/jmnote/ds/main/R/iris.csv")
df.info()
df.head()
R
df <- iris
str( df )
import pandas as pd
df = pd.read_csv("https://raw.githubusercontent.com/jmnote/ds/main/R/iris.csv")
df.info()
df.head()
df <- iris
str( df )