matplotlib의 scatter 만들기 . 그래프
reference : https://plot.ly/python/reference/#scatter
plot 버전 체크
scatter 만들기
import plotly.plotly as py
import plotly.graph_objs as go
# Create random data with numpy
import numpy as np
N = 1000
random_x = np.random.randn(N)
random_y = np.random.randn(N)
# Create a trace
trace = go.Scatter(
x = random_x,
y = random_y,
mode = 'markers'
)
data = [trace]
# Plot and embed in ipython notebook!
py.iplot(data, filename='basic-scatter')
# or plot with: plot_url = py.plot(data, filename='basic-line')
...
'프로그래밍 > Python' 카테고리의 다른 글
[Python] Flask 설치 (0) | 2017.06.28 |
---|---|
[python] Unofficial Windows Binaries for Python Extension Packages (0) | 2017.06.27 |
[python] 파이썬에서 유니코드 스트림 다루기 (0) | 2017.06.22 |
[python] 응용: 쉘 스크립트를 이용해 해당 디렉토리의 파일들 모두 변경 (0) | 2017.06.22 |
[Python] python matplotlib 에서 한글폰트 사용하기. font_manager 의 폰트 리스트 확인 (0) | 2017.06.21 |