Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 파이썬
- 이더리움
- Actor
- 파이썬 강좌
- play 강좌
- Play2 로 웹 개발
- 주키퍼
- 스칼라
- 블록체인
- 엔터프라이즈 블록체인
- Hyperledger fabric gossip protocol
- Akka
- 하이브리드앱
- 플레이프레임워크
- 스위프트
- hyperledger fabric
- 파이썬 데이터분석
- 그라파나
- play2 강좌
- 스칼라 동시성
- 하이퍼레저 패브릭
- 스칼라 강좌
- CORDA
- 안드로이드 웹뷰
- Play2
- Golang
- 파이썬 머신러닝
- Adapter 패턴
- 파이썬 동시성
- akka 강좌
Archives
- Today
- Total
HAMA 블로그
Matplotlib 예제들 본문
데이터 가시화 (d3.js , Plotly, Grafana, Kibana 등)
Matplotlib 예제들
[하마] 이승현 (wowlsh93@gmail.com) 2017. 3. 21. 17:41line chart
import matplotlib.pyplot as plt xs = range(1440)
plt.plot(xs, watts)
plt.axis([0, 1440, 0, 100000])
plt.xlabel("# of 1min of day")
plt.ylabel("# of watt")
plt.show()
bar chart
import matplotlib.pyplot as plt xs = range(1440)
plt.bar(xs, watts)
plt.axis([0, 1440, 0, 100000])
plt.xlabel("# of 1min of day")
plt.ylabel("# of watt")
plt.show()
line chart 2
import matplotlib.pyplot as plt import numpy as np
t = np.arange(0.0, 20.0, 1)
s = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
s2 = [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
plt.subplot(2, 1, 1)
plt.plot(t, s)
plt.ylabel('Value')
plt.title('First chart')
plt.grid(True)
plt.subplot(2, 1, 2)
plt.plot(t, s2)
plt.xlabel('Item (s)')
plt.ylabel('Value')
plt.title('Second chart')
plt.grid(True)
plt.show()
line chart 3
import matplotlib.pyplot as plt
radius = [1.0, 2.0, 3.0, 4.0, 5.0, 6.0]
area = [3.14159, 12.56636, 28.27431, 50.26544, 78.53975, 113.09724]
square = [1.0, 4.0, 9.0, 16.0, 25.0, 36.0]
plt.plot(radius, area, label='Circle')
plt.plot(radius, square, marker='o', linestyle='--', color='r', label='Square')
plt.xlabel('Radius/Side')
plt.ylabel('Area')
plt.title('Area of Shapes')
plt.legend()
plt.show()
가끔 아래와 같이 pylab 을 볼 수 있는데 이것은 matplotlib.pyplot 과 numpy 를 합쳐놓은 것이다. 사용하지말라~
from pylab import *
'데이터 가시화 (d3.js , Plotly, Grafana, Kibana 등)' 카테고리의 다른 글
Plotly 와 파이썬을 이용해서 모던한 차트 만들기 (0) | 2017.03.22 |
---|---|
시계열 데이터 스토어로서의 Elasticsearch ?? (0) | 2017.03.21 |
InfluxDB 와 Grafana 사용시 시간에 관하여 (0) | 2016.10.21 |
InfluxDB 와 Grafana 를 이용한 빅데이터 가시화 (1) | 2016.04.15 |
d3. js 를 이용한 챠트 라이브러리들 (C3.js / NVD3.js / Cubism.js) (0) | 2015.10.26 |
Comments