1. 다중 분류 문제

다중 분류(multi classification)

2. 상관도 그래프

데이터를 불러온다

import pandas as pd

df = pd.read_csv("./deeplearning/dataset/iris.csv", names = ["sepal_length",
                                                             "sepal_width",
                                                             "petal_length",
                                                             "petal_width",
                                                             "species"])

print(df.head())

pairplot() 함수

import seaborn as sns
import matplotlib.pyplot as plt

sns.pairplot(df, hue='species')
plt.show()