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 rayos en un gráfico. El trazado de rayos en un gráfico se puede hacer usando el ray()
método del plotting
módulo.
trazado.figura.ray()
Sintaxis: rayo (parámetros)
Parámetros:
- x : coordenadas x de los puntos iniciales de los rayos
- y : coordenadas y de los puntos iniciales de los rayos
- longitud : longitud del rayo
- length_units : unidad de la longitud de los rayos
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 Rays Graph") # the points to be plotted x = 0 y = 0 # plotting the graph graph.ray(x, y) # displaying the model show(graph)
Producción :
Ejemplo 2: En este ejemplo, trazaremos múltiples rayos con varios otros parámetros.
# importing the modules from bokeh.plotting import figure, output_file, show from bokeh.palettes import magma import numpy # file to save the model output_file("gfg.html") # instantiating the figure object graph = figure(title = "Bokeh Rays Graph") # name of the x-axis graph.xaxis.axis_label = "x-axis" # name of the y-axis graph.yaxis.axis_label = "y-axis" # the points to be plotted x = [0] * 256 y = [0] * 256 # angles of the rays angle = numpy.linspace(0.00, 6.28, num = 256).tolist() # color of the rays color = magma(256) # plotting the graph graph.ray(x, y, angle = angle, color = color) # displaying the model show(graph)
Producción :