블로그
- pandas_seaborn 다변량 그래프 ## seaborn 다변량 그래프 import seaborn as sns import matplotlib.pyplot as plt tips = sns.load_dataset('tips ') print(tips.head()) # 바이올린 ax = plt.subplots() ax = sns.violinplot(data=tips, x='time', y='total_bill
- pandas_ Series 그래프_ seaborn ## Series 로 그래프 그리기 import seaborn as sns import matplotlib.pyplot as plt tips = sns.load_dataset('tips ') print(tips.head()) ax = plt.subplots() ax = tips['total_bill'].plot.hist() plt.show() fig2, ax2 =
- pandas_ 산점도 ## seaborn lib 의 tips데이타 사용 import seaborn as sns import matplotlib.pyplot as plt tips = sns.load_dataset ('tips') print(tips.head()) print(type(tips)) # 1.
- pandas_seaborn_2 seaborn 라이브러리 가 matplotlib 보다 산점도 그래프 ## seaborn 의 regplot ## 회귀선 제거 fit_reg = False import seaborn as sns import matplotlib.pyplot as plt tips = sns.load_dataset('tips') print(tips.head()) ## 산점도 그래프 ax = plt.subplots