Visualizing data in Bokeh
Bokeh is another popular data visualization library in Python. Bokeh provides interactive and aesthetically appealing charts. These charts allow users to probe many scenarios interactively. Bokeh also supports custom JavaScript for special and advanced visualization use cases. With it, charts can be easily embedded into web pages.
Glyphs are the building blocks of bokeh visualizations. A glyph is a geometrical shape or marker that is used to represent data and create plots in bokeh. Typically, a plot consists of one or many geometrical shapes such as line, square, circle, rectangle, and so on. These shapes (glyphs) have visual information about the corresponding set of data.
Many of the important terms considered under the matplotlib recipe also apply to bokeh, and the syntax is also quite similar. We will explore bokeh through some examples.
Getting ready
We will continue working with Amsterdam House Prices Data from Kaggle.
We will also use...