파이썬 KDE Plot 을 활용하여 데이터의 분포를 확인 할 수 있다.

# KDE Plot 확인 방법.
import seaborn as sns

sns.kdeplot(data = df, fill = True)
# 여러개의 데이터 KDE Plot 확인 방법.
import matplotlib.pyplot as plt
import seaborn as sns

fig, ax = plt.subplots(10, 2, figsize = (20, 60))
count = 0
columns = df.columns[2:]
for row in range(10):
  for col in range(2):
    sns.kdeplot(data = df[columns[count:count+1]], fill = True, ax = ax[row][col])
    count += 1
    if count == 20:
      break

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/4ba6ac9c-7b29-42df-a250-c0a9d299d5bd/Untitled.png