IPython Notebook에서 그래프 그리기

IPython Notebook 설치



환경: Ubuntu 14.04LTS

IPython Notebook 설치
$ sudo apt-get install ipython-notebook

수치 계산 라이브러리 및 그래프 그리기 라이브러리 설치
$ sudo apt-get install python-matplotlib python-scipy python-pandas python-sympy python-nose

IPython Notebook 시작


$ ipython notebook

그리고 명령을 치면 IPython Notebook이 브라우저에서 시작됩니다.



예: 3D 버블 차트 그리기


from mpl_toolkits.mplot3d import Axes3D
import numpy as np
import matplotlib.pyplot as plt

fig = plt.figure()
ax = fig.gca(projection='3d')
colors = ('r', 'g', 'b', 'k')
for c in colors:
    x = np.random.sample(30)
    y = np.random.sample(30)
    ax.scatter(x, y, 0, zdir='y', c=c)

ax.legend()
ax.set_xlim3d(0, 1)
ax.set_ylim3d(0, 1)
ax.set_zlim3d(0, 1)

plt.show()

좋은 웹페이지 즐겨찾기