・ Es ist möglich, den Inhalt der Daten mit dem Werkzeugchip zu überprüfen
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)"),
]
#Grafikeinstellungen
p = figure(tooltips=TOOLTIPS, title="Graphentitel", x_axis_label="x-Achse", y_axis_label="y-Achse")
#Streudiagramm
p.circle(x = x,y = y)
#show(p)
#Liniendiagramm
#p.line(x = x,y = y)
#show(p)
#Balkendiagramm
#p.vbar(x = x,top = y,width=0.5)
show(p)
Recommended Posts