Bokeh – Extending Bokeh

Bokeh – Extending Bokeh ”; Previous Next Bokeh integrates well with a wide variety of other libraries, allowing you to use the most appropriate tool for each task. The fact that Bokeh generates JavaScript, makes it possible to combine Bokeh output with a wide variety of JavaScript libraries, such as PhosphorJS. Datashader (https://github.com/bokeh/datashader) is another library with which Bokeh output can be extended. It is a Python library that pre-renders large datasets as a large-sized raster image. This ability overcomes limitation of browser when it comes to very large data. Datashader includes tools to build interactive Bokeh plots that dynamically re-render these images when zooming and panning in Bokeh, making it practical to work with arbitrarily large datasets in a web browser. Another library is Holoviews ((http://holoviews.org/) that provides a concise declarative interface for building Bokeh plots, especially in Jupyter notebook. It facilitates quick prototyping of figures for data analysis. Print Page Previous Next Advertisements ”;

Bokeh – Pandas

Bokeh – Pandas ”; Previous Next In all the examples above, the data to be plotted has been provided in the form of Python lists or numpy arrays. It is also possible to provide the data source in the form of pandas DataFrame object. DataFrame is a two-dimensional data structure. Columns in the dataframe can be of different data types. The Pandas library has functions to create dataframe from various sources such as CSV file, Excel worksheet, SQL table, etc. For the purpose of following example, we are using a CSV file consisting of two columns representing a number x and 10x. The test.csv file is as below − x,pow 0.0,1.0 0.5263157894736842,3.3598182862837818 1.0526315789473684,11.28837891684689 1.5789473684210527,37.926901907322495 2.1052631578947367,127.42749857031335 2.631578947368421,428.1332398719391 3.1578947368421053,1438.449888287663 3.6842105263157894,4832.930238571752 4.2105263157894735,16237.76739188721 4.7368421052631575,54555.947811685146 We shall read this file in a dataframe object using read_csv() function in pandas. import pandas as pd df = pd.read_csv(”test.csv”) print (df) The dataframe appears as below − x pow 0 0.000000 1.000000 1 0.526316 3.359818 2 1.052632 11.288379 3 1.578947 37.926902 4 2.105263 127.427499 5 2.631579 428.133240 6 3.157895 1438.449888 7 3.684211 4832.930239 8 4.210526 16237.767392 9 4.736842 54555.947812 The ‘x’ and ‘pow’ columns are used as data series for line glyph in bokeh plot figure. from bokeh.plotting import figure, output_file, show p = figure() x = df[”x”] y = df[”pow”] p.line(x,y,line_width = 2) p.circle(x, y,size = 20) show(p) Output Print Page Previous Next Advertisements ”;

Bokeh – Layouts

Bokeh – Layouts ”; Previous Next Bokeh visualizations can be suitably arranged in different layout options. These layouts as well as sizing modes result in plots and widgets resizing automatically as per the size of browser window. For consistent appearance, all items in a layout must have same sizing mode. The widgets (buttons, menus, etc.) are kept in a separate widget box and not in plot figure. First type of layout is Column layout which displays plot figures vertically. The column() function is defined in bokeh.layouts module and takes following signature − from bokeh.layouts import column col = column(children, sizing_mode) children − List of plots and/or widgets. sizing_mode − determines how items in the layout resize. Possible values are “fixed”, “stretch_both”, “scale_width”, “scale_height”, “scale_both”. Default is “fixed”. Following code produces two Bokeh figures and places them in a column layout so that they are displayed vertically. Line glyphs representing sine and cos relationship between x and y data series is displayed in Each figure. from bokeh.plotting import figure, output_file, show from bokeh.layouts import column import numpy as np import math x = np.arange(0, math.pi*2, 0.05) y1 = np.sin(x) y2 = np.cos(x) fig1 = figure(plot_width = 200, plot_height = 200) fig1.line(x, y1,line_width = 2, line_color = ”blue”) fig2 = figure(plot_width = 200, plot_height = 200) fig2.line(x, y2,line_width = 2, line_color = ”red”) c = column(children = [fig1, fig2], sizing_mode = ”stretch_both”) show(c) Output Similarly, Row layout arranges plots horizontally, for which row() function as defined in bokeh.layouts module is used. As you would think, it also takes two arguments (similar to column() function) – children and sizing_mode. The sine and cos curves as shown vertically in above diagram are now displayed horizontally in row layout with following code from bokeh.plotting import figure, output_file, show from bokeh.layouts import row import numpy as np import math x = np.arange(0, math.pi*2, 0.05) y1 = np.sin(x) y2 = np.cos(x) fig1 = figure(plot_width = 200, plot_height = 200) fig1.line(x, y1,line_width = 2, line_color = ”blue”) fig2 = figure(plot_width = 200, plot_height = 200) fig2.line(x, y2,line_width = 2, line_color = ”red”) r = row(children = [fig1, fig2], sizing_mode = ”stretch_both”) show(r) Output The Bokeh package also has grid layout. It holds multiple plot figures (as well as widgets) in a two dimensional grid of rows and columns. The gridplot() function in bokeh.layouts module returns a grid and a single unified toolbar which may be positioned with the help of toolbar_location property. This is unlike row or column layout where each plot shows its own toolbar. The grid() function too uses children and sizing_mode parameters where children is a list of lists. Ensure that each sublist is of same dimensions. In the following code, four different relationships between x and y data series are plotted in a grid of two rows and two columns. from bokeh.plotting import figure, output_file, show from bokeh.layouts import gridplot import math x = list(range(1,11)) y1 = x y2 =[11-i for i in x] y3 = [i*i for i in x] y4 = [math.log10(i) for i in x] fig1 = figure(plot_width = 200, plot_height = 200) fig1.line(x, y1,line_width = 2, line_color = ”blue”) fig2 = figure(plot_width = 200, plot_height = 200) fig2.circle(x, y2,size = 10, color = ”green”) fig3 = figure(plot_width = 200, plot_height = 200) fig3.circle(x,y3, size = 10, color = ”grey”) fig4 = figure(plot_width = 200, plot_height = 200, y_axis_type = ”log”) fig4.line(x,y4, line_width = 2, line_color = ”red”) grid = gridplot(children = [[fig1, fig2], [fig3,fig4]], sizing_mode = ”stretch_both”) show(grid) Output Print Page Previous Next Advertisements ”;

Bokeh – Customising legends

Bokeh – Customising legends ”; Previous Next Various glyphs in a plot can be identified by legend property appear as a label by default at top-right position of the plot area. This legend can be customised by following attributes − 1 legend.label_text_font change default label font to specified font name 2 legend.label_text_font_size font size in points 3 legend.location set the label at specified location. 4 legend.title set title for legend label 5 legend.orientation set to horizontal (default) or vertical 6 legend.clicking_policy specify what should happen when legend is clicked hide: hides the glyph corresponding to legend mute: mutes the glyph corresponding to legendtd> Example Example code for legend customisation is as follows − from bokeh.plotting import figure, output_file, show import math x2 = list(range(1,11)) y4 = [math.pow(i,2) for i in x2] y2 = [math.log10(pow(10,i)) for i in x2] fig = figure(y_axis_type = ”log”) fig.circle(x2, y2,size = 5, color = ”blue”, legend = ”blue circle”) fig.line(x2,y4, line_width = 2, line_color = ”red”, legend = ”red line”) fig.legend.location = ”top_left” fig.legend.title = ”Legend Title” fig.legend.title_text_font = ”Arial” fig.legend.title_text_font_size = ”20pt” show(fig) Output Print Page Previous Next Advertisements ”;

Bokeh – Jupyter Notebook

Bokeh – Jupyter Notebook ”; Previous Next Displaying Bokeh figure in Jupyter notebook is very similar to the above. The only change you need to make is to import output_notebook instead of output_file from bokeh.plotting module. from bokeh.plotting import figure, output_notebook, show Call to output_notebook() function sets Jupyter notebook’s output cell as the destination for show() function as shown below − output_notebook() show(p) Enter the code in a notebook cell and run it. The sine wave will be displayed inside the notebook. Print Page Previous Next Advertisements ”;

Bokeh – Specialized Curves

Bokeh – Specialized Curves ”; Previous Next The bokeh.plotting API supports methods for rendering following specialised curves − beizer() This method adds a Bézier curve to the figure object. A Bézier curve is a parametric curve used in computer graphics. Other uses include the design of computer fonts and animation, user interface design and for smoothing cursor trajectory. In vector graphics, Bézier curves are used to model smooth curves that can be scaled indefinitely. A “Path” is combination of linked Bézier curves. The beizer() method has following parameters which are defined − 1 x0 The x-coordinates of the starting points. 2 y0 The y-coordinates of the starting points.. 3 x1 The x-coordinates of the ending points. 4 y1 The y-coordinates of the ending points. 5 cx0 The x-coordinates of first control points. 6 cy0 The y-coordinates of first control points. 7 cx1 The x-coordinates of second control points. 8 cy1 The y-coordinates of second control points. Default value for all parameters is None. Example Following code generates a HTML page showing a Bézier curve and parabola in Bokeh plot − x = 2 y = 4 xp02 = x+0.4 xp01 = x+0.1 xm01 = x-0.1 yp01 = y+0.2 ym01 = y-0.2 fig = figure(plot_width = 300, plot_height = 300) fig.bezier(x0 = x, y0 = y, x1 = xp02, y1 = y, cx0 = xp01, cy0 = yp01, cx1 = xm01, cy1 = ym01, line_color = “red”, line_width = 2) Output quadratic() This method adds a parabola glyph to bokeh figure. The function has same parameters as beizer(), except cx0 and cx1. Example The code given below generates a quadratic curve. x = 2 y = 4 xp02 = x + 0.3 xp01 = x + 0.2 xm01 = x – 0.4 yp01 = y + 0.1 ym01 = y – 0.2 x = x, y = y, xp02 = x + 0.4, xp01 = x + 0.1, yp01 = y + 0.2, fig.quadratic(x0 = x, y0 = y, x1 = x + 0.4, y1 = y + 0.01, cx = x + 0.1, cy = y + 0.2, line_color = “blue”, line_width = 3) Output Print Page Previous Next Advertisements ”;

Bokeh – Area Plots

Bokeh – Area Plots ”; Previous Next Area plots are filled regions between two series that share a common index. Bokeh”s Figure class has two methods as follows − varea() Output of the varea() method is a vertical directed area that has one x coordinate array, and two y coordinate arrays, y1 and y2, which will be filled between. 1 x The x-coordinates for the points of the area. 2 y1 The y-coordinates for the points of one side of the area. 3 y2 The y-coordinates for the points of the other side of the area. Example from bokeh.plotting import figure, output_file, show fig = figure() x = [1, 2, 3, 4, 5] y1 = [2, 6, 4, 3, 5] y2 = [1, 4, 2, 2, 3] fig.varea(x = x,y1 = y1,y2 = y2) output_file(”area.html”) show(fig) Output harea() The harea() method on the other hand needs x1, x2 and y parameters. 1 x1 The x-coordinates for the points of one side of the area. 2 x2 The x-coordinates for the points of the other side of the area. 3 y The y-coordinates for the points of the area. Example from bokeh.plotting import figure, output_file, show fig = figure() y = [1, 2, 3, 4, 5] x1 = [2, 6, 4, 3, 5] x2 = [1, 4, 2, 2, 3] fig.harea(x1 = x1,x2 = x2,y = y) output_file(”area.html”) show(fig) Output Print Page Previous Next Advertisements ”;

Bokeh – Styling Visual Attributes

Bokeh – Styling Visual Attributes ”; Previous Next The default appearance of a Bokeh plot can be customised by setting various properties to desired value. These properties are mainly of three types − Line properties Following table lists various properties related to line glyph. 1 line_color color is used to stroke lines with 2 line_width This is used in units of pixels as line stroke width 3 line_alpha Between 0 (transparent) and 1 (opaque) this acts as a floating point 4 line_join how to join together the path segments. Defined values are: ”miter” (miter_join), ”round” (round_join), ”bevel” (bevel_join) 5 line_cap how to terminate the path segments. Defined values are: ”butt” (butt_cap), ”round” (round_cap), ”square” (square_cap) 6 line_dash BThis is used for a line style. Defined values are: ”solid”, ”dashed”, ”dotted”, ”dotdash”, ”dashdot” 7 line_dash_offset The distance into the line_dash in pixels that the pattern should start from Fill properties Various fill properties are listed below − 1 fill_color This is used to fill paths with 2 fill_alpha Between 0 (transparent) and 1 (opaque), this acts as a floating point Text properties There are many text related properties as listed in the following table − 1 text_font font name, e.g., ”times”, ”helvetica” 2 text_font_size font size in px, em, or pt, e.g., ”12pt”, ”1.5em” 3 text_font_style font style to use ”normal” ”italic” ”bold” 4 text_color This is used to render text with 5 text_alpha Between 0 (transparent) and 1 (opaque), this is a floating point 6 text_align horizontal anchor point for text – ”left”, ”right”, ”center” 7 text_baseline vertical anchor point for text ”top”, ”middle”, ”bottom”, ”alphabetic”, ”hanging” Print Page Previous Next Advertisements ”;

Bokeh – Wedges and Arcs

Bokeh – Wedges and Arcs ”; Previous Next The arc() method draws a simple line arc based on x and y coordinates, start and end angles and radius. Angles are given in radians whereas radius may be in screen units or data units. The wedge is a filled arc. The wedge() method has same properties as arc() method. Both methods have provision of optional direction property which may be clock or anticlock that determines the direction of arc/wedge rendering. The annular_wedge() function renders a filled area between to arcs of inner and outer radius. Example Here is an example of arc and wedge glyphs added to Bokeh figure − from bokeh.plotting import figure, output_file, show import math fig = figure(plot_width = 300, plot_height = 300) fig.arc(x = 3, y = 3, radius = 50, radius_units = ”screen”, start_angle = 0.0, end_angle = math.pi/2) fig.wedge(x = 3, y = 3, radius = 30, radius_units = ”screen”, start_angle = 0, end_angle = math.pi, direction = ”clock”) fig.annular_wedge(x = 3,y = 3, inner_radius = 100, outer_radius = 75,outer_radius_units = ”screen”, inner_radius_units = ”screen”,start_angle = 0.4, end_angle = 4.5,color = “green”, alpha = 0.6) show(fig) Output Print Page Previous Next Advertisements ”;

Bokeh – Adding Widgets

Bokeh – Adding Widgets ”; Previous Next The bokeh.models.widgets module contains definitions of GUI objects similar to HTML form elements, such as button, slider, checkbox, radio button, etc. These controls provide interactive interface to a plot. Invoking processing such as modifying plot data, changing plot parameters, etc., can be performed by custom JavaScript functions executed on corresponding events. Bokeh allows call back functionality to be defined with two methods − Use the CustomJS callback so that the interactivity will work in standalone HTML documents. Use Bokeh server and set up event handlers. In this section, we shall see how to add Bokeh widgets and assign JavaScript callbacks. Button This widget is a clickable button generally used to invoke a user defined call back handler. The constructor takes following parameters − Button(label, icon, callback) The label parameter is a string used as button’s caption and callback is the custom JavaScript function to be called when clicked. In the following example, a plot and Button widget are displayed in Column layout. The plot itself renders a line glyph between x and y data series. A custom JavaScript function named ‘callback’ has been defined using CutomJS() function. It receives reference to the object that triggered callback (in this case the button) in the form variable cb_obj. This function alters the source ColumnDataSource data and finally emits this update in source data. from bokeh.layouts import column from bokeh.models import CustomJS, ColumnDataSource from bokeh.plotting import Figure, output_file, show from bokeh.models.widgets import Button x = [x*0.05 for x in range(0, 200)] y = x source = ColumnDataSource(data=dict(x=x, y=y)) plot = Figure(plot_width=400, plot_height=400) plot.line(”x”, ”y”, source=source, line_width=3, line_alpha=0.6) callback = CustomJS(args=dict(source=source), code=””” var data = source.data; x = data[”x”] y = data[”y”] for (i = 0; i < x.length; i++) { y[i] = Math.pow(x[i], 4) } source.change.emit(); “””) btn = Button(label=”click here”, callback=callback, name=”1″) layout = column(btn , plot) show(layout) Output (initial) Click on the button on top of the plot and see the updated plot figure which looks as follows − Output (after click) Slider With the help of a slider control it is possible to select a number between start and end properties assigned to it. Slider(start, end, step, value) In the following example, we register a callback function on slider’s on_change event. Slider’s instantaneous numeric value is available to the handler in the form of cb_obj.value which is used to modify the ColumnDatasource data. The plot figure continuously updates as you slide the position. from bokeh.layouts import column from bokeh.models import CustomJS, ColumnDataSource from bokeh.plotting import Figure, output_file, show from bokeh.models.widgets import Slider x = [x*0.05 for x in range(0, 200)] y = x source = ColumnDataSource(data=dict(x=x, y=y)) plot = Figure(plot_width=400, plot_height=400) plot.line(”x”, ”y”, source=source, line_width=3, line_alpha=0.6) handler = CustomJS(args=dict(source=source), code=””” var data = source.data; var f = cb_obj.value var x = data[”x”] var y = data[”y”] for (var i = 0; i < x.length; i++) { y[i] = Math.pow(x[i], f) } source.change.emit(); “””) slider = Slider(start=0.0, end=5, value=1, step=.25, title=”Slider Value”) slider.js_on_change(”value”, handler) layout = column(slider, plot) show(layout) Output RadioGroup This widget presents a collection of mutually exclusive toggle buttons showing circular buttons to the left of caption. RadioGroup(labels, active) Where, labels is a list of captions and active is the index of selected option. Select This widget is a simple dropdown list of string items, one of which can be selected. Selected string appears at the top window and it is the value parameter. Select(options, value) The list of string elements in the dropdown is given in the form of options list object. Following is a combined example of radio button and select widgets, both providing three different relationships between x and y data series. The RadioGroup and Select widgets are registered with respective handlers through on_change() method. from bokeh.layouts import column from bokeh.models import CustomJS, ColumnDataSource from bokeh.plotting import Figure, output_file, show from bokeh.models.widgets import RadioGroup, Select x = [x*0.05 for x in range(0, 200)] y = x source = ColumnDataSource(data=dict(x=x, y=y)) plot = Figure(plot_width=400, plot_height=400) plot.line(”x”, ”y”, source=source, line_width=3, line_alpha=0.6) radiohandler = CustomJS(args=dict(source=source), code=””” var data = source.data; console.log(”Tap event occurred at x-position: ” + cb_obj.active); //plot.title.text=cb_obj.value; x = data[”x”] y = data[”y”] if (cb_obj.active==0){ for (i = 0; i < x.length; i++) { y[i] = x[i]; } } if (cb_obj.active==1){ for (i = 0; i < x.length; i++) { y[i] = Math.pow(x[i], 2) } } if (cb_obj.active==2){ for (i = 0; i < x.length; i++) { y[i] = Math.pow(x[i], 4) } } source.change.emit(); “””) selecthandler = CustomJS(args=dict(source=source), code=””” var data = source.data; console.log(”Tap event occurred at x-position: ” + cb_obj.value); //plot.title.text=cb_obj.value; x = data[”x”] y = data[”y”] if (cb_obj.value==”line”){ for (i = 0; i < x.length; i++) { y[i] = x[i]; } } if (cb_obj.value==”SquareCurve”){ for (i = 0; i < x.length; i++) { y[i] = Math.pow(x[i], 2) } } if (cb_obj.value==”CubeCurve”){ for (i = 0; i < x.length; i++) { y[i] = Math.pow(x[i], 4) } } source.change.emit(); “””) radio = RadioGroup( labels=[“line”, “SqureCurve”, “CubeCurve”], active=0) radio.js_on_change(”active”, radiohandler) select = Select(title=”Select:”, value=”line”, options=[“line”, “SquareCurve”, “CubeCurve”]) select.js_on_change(”value”, selecthandler) layout = column(radio, select, plot) show(layout) Output Tab widget Just as in a browser, each tab can show different web page, the Tab widget is Bokeh model providing different view to each figure. In the following example, two plot figures of sine and cosine curves are rendered in two different tabs − from bokeh.plotting import figure, output_file, show from bokeh.models import Panel, Tabs import numpy as np import math x=np.arange(0, math.pi*2, 0.05) fig1=figure(plot_width=300, plot_height=300) fig1.line(x, np.sin(x),line_width=2, line_color=”navy”) tab1 = Panel(child=fig1, title=”sine”) fig2=figure(plot_width=300, plot_height=300) fig2.line(x,np.cos(x), line_width=2, line_color=”orange”)