・ Il est possible de vérifier le contenu des données avec la puce outil
import matplotlib.pyplot as plt
import numpy as np
import random
from bokeh.io import output_notebook, show
from bokeh.plotting import figure,show
output_notebook()
x = np.linspace(1, 10, 10)
y = [random.randint(0, 10) for i in range(10)]
TOOLTIPS = [
("index", "$index"),
("(x,y)", "($x, $y)"),
]
#Paramètres du graphique
p = figure(tooltips=TOOLTIPS, title="Titre du graphique", x_axis_label="axe x", y_axis_label="axe y")
#Nuage de points
p.circle(x = x,y = y)
#show(p)
#Graphique linéaire
#p.line(x = x,y = y)
#show(p)
#graphique à barres
#p.vbar(x = x,top = y,width=0.5)
show(p)
Recommended Posts