!pip install seaborn
import matplotlib.pyplot as plt
import seaborn as sns
'Malgun Gothic'
해도 될듯plt.rc('font', family='NanumGothicCoding')
sns.set_theme(font="NanumGothicCoding",
style='whitegrid'
palette="pastel",
rc={"axes.unicode_minus":False},# 마이너스 부호 깨짐 현상 해결)
%matplotlib inline
"axes.spines.top": False
: 위쪾 축/테두리 제거. spine: left, right, top, bottom 각각 지정
"axes.unicode_minus":False
: 마이너스 부호 깨짐 현상 해결
style
: 'darkgrid', 'whitegrid', 'dark', 'white', 'ticks'
plt.figure(figsize=(15, 5))
plt.xlabel('열1')
plt.ylabel('열2')
plt.title('title 이름')
plt.legend(["열1", "열2"])
plt.show()
plt.plot()
sns.lineplot(data=df, x="열1", y="열2")
plt.scatter(data=df, x="열1", y="열2")
sns.scatterplot(data=df, x="열1", y="열2")
plt.hist(df['열1'], bins=10)
plt.boxplot(df['열1'], bins=10)
sns.heatmap(df.corr(), annot=True)