Bokeh es una visualización de datos interactiva de Python. Representa sus tramas usando HTML y JavaScript. Se dirige a los navegadores web modernos para presentaciones que proporcionan una construcción elegante y concisa de gráficos novedosos con interactividad de alto rendimiento.
Bokeh se puede utilizar para trazar varios parches en un gráfico. Se pueden trazar varios parches en un gráfico utilizando el patches()
método del plotting
módulo.
plotting.figure.patches()
Sintaxis: parches (parámetros)
Parámetros:
- xs : coordenadas x de los parches
- ys : coordenadas y de los parches
Devoluciones: un objeto de clase
GlyphRenderer
Ejemplo 1: En este ejemplo, utilizaremos los valores predeterminados para trazar el gráfico.
# importing the modules from bokeh.plotting import figure, output_file, show # file to save the model output_file("gfg.html") # instantiating the figure object graph = figure(title = "Bokeh Patches Graph") # the points to be plotted xs = [[1, 2, 3], [3, 5, 3, 5]] ys = [[1, 2, 1], [2, 2, 4, 5]] # plotting the graph graph.patches(xs, ys) # displaying the model show(graph)
Producción :
Ejemplo 2: en este ejemplo, trazaremos los parches con varios otros parámetros
# importing the modules from bokeh.plotting import figure, output_file, show # file to save the model output_file("gfg.html") # instantiating the figure object graph = figure(title = "Bokeh Patches Graph") # name of the x-axis graph.xaxis.axis_label = "x-axis" # name of the y-axis graph.yaxis.axis_label = "y-axis" # points to be plotted xs = [[1, 2, 3], [3, 5, 5, 3]] ys = [[1, 2, 1], [4, 4, 2, 2]] # color value of the patches color = ["green", "red"] # fill alpha value of the patches fill_alpha = 1 # plotting the graph graph.patches(xs, ys, color = color, fill_alpha = fill_alpha) # displaying the model show(graph)
Producción :