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 rectángulos en un gráfico. El trazado de rectángulos en un gráfico se puede hacer utilizando el rect()
método del plotting
módulo.
trazado.figura.rect()
Sintaxis: rect (parámetros)
Parámetros:
- x : coordenadas x del centro del rectángulo
- y : coordenadas y del centro del rectángulo
- ancho : ancho del rectángulo
- width_units : unidad del ancho del rectángulo
- altura : altura del rectángulo
- height_units : unidad de la altura del rectángulo
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 Rectangle Graph", match_aspect = True) # the points to be plotted x = 0 y = 0 width = 10 height = 5 # plotting the graph graph.rect(x, y, width, height) # displaying the model show(graph)
Producción :
Ejemplo 2: en este ejemplo, trazaremos los rectángulos múltiples 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 Rectangle 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, 3, 5] y = [0, 3, 3] width = [2, 4, 6] height = [2, 3, 8] # color value of the rectangle color = ["yellow", "red", "blue"] # fill alpha value of the rectangle fill_alpha = [0.9, 0.7, 0.5] # plotting the graph graph.rect(x, y, width, height, color = color, fill_alpha = fill_alpha) # displaying the model show(graph)
Producción :