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 segmentos de línea en un gráfico. El trazado de segmentos de línea en un gráfico se puede hacer utilizando el segment()
método del plotting
módulo.
trazado.figura.segmento()
Sintaxis: segmento (parámetros)
Parámetros:
- x0 : coordenadas x de los puntos iniciales del segmento de línea
- y0 : coordenadas y de los puntos iniciales del segmento de línea
- x1 : coordenadas x de los puntos finales del segmento de línea
- y1 : coordenadas y de los puntos finales del segmento de línea
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 Segment Graph") # the points to be plotted x0 = 0 y0 = 0 x1 = 10 y1 = 10 # plotting the graph graph.segment(x0, y0, x1, y1) # displaying the model show(graph)
Producción :
Ejemplo 2: en este ejemplo, trazaremos los segmentos de línea múltiple 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 Segment 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 x0 = [0, 0, 5] y0 = [0, 5, 0] x1 = [10, 10, 5] y1 = [10, 5, 10] # color of the lines line_color = ["yellow", "red", "purple"] # value of line dash line_dash = "dotted" # thickness of the lines line_width = [15, 10, 20] # plotting the graph graph.segment(x0, y0, x1, y1, line_color = line_color, line_dash = line_dash, line_width = line_width) # displaying the model show(graph)
Producción :