1. matplotlib
r프로그램에서 시각화를 담당하는 패키지 ggplot2()와 같은 역할을 하는 파이썬 시각화 대표 패키지
>>>conda install matplotlib
#한글 폰트 사용을 위한 세팅(모듈 활성화)
from matplotlib import font_manager, rc
font_path='c:\\Windows\\Fonts\\malgunbd.ttf'
font=font_manager.FontProperties(fname=font_path).get_name()
rc('font', family=font)
import matplotlib.pyplot as plt
plt.style.use('default')
plt.plot([2,4,5,9])
plt.show()
x=[2,4,6,8]
y=[1,3,5,7]
plt.plot(x,y)
plt.show()
#한 화면에 여러 그래프 그리기
fig = plt.figure()
ax1 = fig.add_subplot(2,1,1)
ax2 = fig.add_subplot(2,1,2)
#예제
fig = plt.figure()
ax1 = fig.add_subplot(1,2,1)
ax2 = fig.add_subplot(1,2,2)
x1=range(0,10+1)
y1=range(5,15+1)
ax1.plot(x1,y1,'ro')
x2=range(0,50+1)
y2=range(0,50+1)
ax2.plot(x2,y2,'bs')
#라벨붙여주기
ax1.set_xlabel('판매시간')
ax1.set_ylabel('판매수량')
ax2.set_xlabel('판매시간')
ax2.set_ylabel('판매수량')
plt.show()
플러그인 -> unsplash (뒷배경 무료이용), table generater, user profile, Feather Icons
피그마라는 사이트를 이용해 데이터 시각화 가능 (위는 예시)
'20대 성장기 > 공부' 카테고리의 다른 글
논문 작성을 위한 시계열 분석 : R프로그래밍 (0) | 2021.12.29 |
---|---|
빅데이터 디자인실무 1급 과정_파이썬 프로그래밍 [4-3] 판다스 기본문법 (0) | 2021.11.25 |
빅데이터 디자인실무 1급 과정_파이썬 프로그래밍 [4-2] 웹크롤링 (0) | 2021.11.24 |
빅데이터 디자인실무 1급 과정_파이썬 프로그래밍 [4] 웹크롤링 (0) | 2021.11.23 |
빅데이터 디자인실무 1급 과정_파이썬 프로그래밍 [3-2] 코드 정리 (0) | 2021.11.23 |