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 parches en un gráfico. El trazado de parches en un gráfico se puede hacer utilizando el patch()
método del plotting
módulo.
trazado.figura.parche()
Sintaxis: parche (parámetros)
Parámetros:
- x : coordenadas x del parche
- y : coordenadas y del parche
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 Patch Graph") # the points to be plotted x = [0, 1, 2, 3, 4, 5] y = [5, 2, 8, 5, 0, 10] # plotting the graph graph.patch(x, y) # displaying the model show(graph)
Producción :
Ejemplo 2: en este ejemplo, trazaremos el parche 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 Patch 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 x = [0, 0, 1, 1, 4, 2, 8, 4] y = [2.5, 0.5, 0.5, 2.5, 5, 9, 1, 0] # color value of the patch color = "yellow" # fill alpha value of the patch fill_alpha = 0.5 # name of the legend legend_label = "Sample Patch" # plotting the graph graph.patch(x, y, color = color, fill_alpha = fill_alpha, legend_label = legend_label) # displaying the model show(graph)
Producción :