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()
Reference
이 문제에 관하여(IPython Notebook에서 그래프 그리기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/sakaitaka/items/e5b74ed46e8fb334d4ce텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)