Dessin graphique avec IPython Notebook

Installez IPython Notebook

Environnement: Ubuntu 14.04 LTS

Installez IPython Notebook

$ sudo apt-get install ipython-notebook

Installation d'une bibliothèque de calculs numériques et d'une bibliothèque de dessins graphiques

$ sudo apt-get install python-matplotlib python-scipy python-pandas python-sympy python-nose

Lancez IPython Notebook

$ ipython notebook

IPython Notebook se lance sur le navigateur

ipython_new.png

Exemple: dessiner un graphique à bulles 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()

ipython_notebook.png

Recommended Posts

Dessin graphique avec IPython Notebook
Dessin graphique avec jupyter (notebook ipython) + matplotlib + vagrant
Calcul parallèle avec le notebook iPython
Méthode de dessin graphique avec matplotlib
Jouer avec Jupyter Notebook (IPython Notebook)
Exécutez Apache-Spark sur le notebook IPython
Utilisation de Bokeh avec IPython Notebook
La vie de recherche et développement avec le notebook iPython
Créer un environnement de notebook IPython avec boot2docker
Utilisation d'Apache Spark avec le notebook Jupyter (notebook IPython)
Présentation HTML "EN DIRECT" avec IPython 3.0.0-dev, IPython Notebook
installation du notebook ipython
Recommandations du notebook IPython
Dessinez un graphique avec PyQtGraph Part 1-Drawing
Sortie de cellule riche avec Jupyter Notebook (IPython)
Comment déboguer avec Jupyter ou iPython Notebook
Créer une table avec le notebook IPython
Dessin graphique avec matplotlib
Graphique de bande avec matplotlib
Démarrez IPython avec virtualenv
Dessin en temps réel avec matplotlib
Dessiner avec Python Tinker
Créer des diapositives avec iPython
Connecter à distance un notebook IPython
Construction d'un environnement d'analyse de données avec Python (notebook IPython + Pandas)
Dessiner une structure arborescente avec D3.js dans Jupyter Notebook
Approvisionnement EC2 avec Vagrant + Jupyter (IPython Notebook) sur Docker
Construction de l'environnement de contrôle à distance Pepper-kun avec Docker + IPython Notebook
[Apprentissage automatique] Démarrez Spark avec iPython Notebook et essayez MLlib
Je souhaite utiliser facilement les fonctions R avec le notebook ipython
Graphique des données Excel avec matplotlib (1)
[IPython] Comment partager un bloc-notes IPython
Lors de l'utilisation d'optparse avec iPython
Utilisation de Graphviz avec Jupyter Notebook
Dessiner GoogLeNet avec draw_net de caffe
Dessinez un graphique avec NetworkX
Utiliser pip avec Jupyter Notebook
tracé Créer un graphique avec un bouton
Affichage des chaînes sur le notebook IPython
Comment utiliser IPython Notebook
Utiliser Cython avec Jupyter Notebook
Lancez le serveur de notebook IPython
Exécutez IPython Notebook sur Docker
Dessinez un graphique avec networkx
recharger dans le shell django avec ipython
Tracez un graphe avec Julia + PyQtGraph (2)
Visualisez l'arbre de décision avec le notebook Jupyter
Faites un son avec le notebook Jupyter
Exécution du script au démarrage avec ipython
Apprenez avec les réseaux convolutifs PyTorch Graph
Remarque: dessin graphique termplotlib sur le terminal
Tracez un graphique avec Julia + PyQtGraph (1)
Graphique d'appel de sortie avec PyCallGraph
Utiliser Markdown avec le notebook Jupyter (avec raccourci)
Ajouter plus de noyaux avec Jupyter Notebook
Analyse pratique avec Pandas + notebook Jupyter
Dessinez un graphique avec des pandas + XlsxWriter
Faisons un graphe avec python! !!
Notes de traitement par lots dans IPython Notebook
Faire un joli graphique avec plotly
Dessinez un graphique avec l'interface graphique PySimple