Seaborn

import seaborn as sns
sns.lineplot(x = [1,2,3,4], y = [0.7, 2.0, 1.5, 1.1 ]
sns.barplot( x = [ ] , y = [ ] )

Seaborn pyplot

plt.figure(figsize = ( 20, 10 ) # 그래프 전체의 크기를 변경한다
# figure는 그래프를 선언하기 전 맨 처음 나와야 적용이 된다.

sns.barplot( x = [ ] , y = [ ] )

plt.title("Bar Plot")
plt.xlabel("X Label")
plt.ylabel("Y label")

plt.ylim(2,3) # Y축의 범위를 지정해준다.
plt.xlim(0,10) # X축의 범우를 지정해준다

plt.show()

Web Scraping

스크래핑 결과 시각화하기 2

Word Cloud - 애국가

워드클라우드 - Hashcode