- Bokeh - Discussion
- Bokeh - Useful Resources
- Bokeh - Quick Guide
- Bokeh - Developing with JavaScript
- Bokeh - WebGL
- Bokeh - Extending Bokeh
- Bokeh - Embedding Plots and Apps
- Bokeh - Exporting Plots
- Bokeh - Using Bokeh Subcommands
- Bokeh - Server
- Bokeh - Adding Widgets
- Bokeh - Customising legends
- Bokeh - Styling Visual Attributes
- Bokeh - Plot Tools
- Bokeh - Layouts
- Bokeh - Filtering Data
- Bokeh - ColumnDataSource
- Bokeh - Pandas
- Bokeh - Annotations and Legends
- Bokeh - Axes
- Bokeh - Setting Ranges
- Bokeh - Specialized Curves
- Bokeh - Wedges and Arcs
- Bokeh - Rectangle, Oval and Polygon
- Bokeh - Circle Glyphs
- Bokeh - Area Plots
- Bokeh - Plots with Glyphs
- Bokeh - Basic Concepts
- Bokeh - Jupyter Notebook
- Bokeh - Getting Started
- Bokeh - Environment Setup
- Bokeh - Introduction
- Bokeh - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Bokeh - Basic Concepts
Bokeh package offers two interfaces using which various plotting operations can be performed.
bokeh.models
This module is a low level interface. It provides great deal of flexibipty to the apppcation developer in developing visuapzations. A Bokeh plot results in an object containing visual and data aspects of a scene which is used by BokehJS pbrary. The low-level objects that comprise a Bokeh scene graph are called Models.
bokeh.plotting
This is a higher level interface that has functionapty for composing visual glyphs. This module contains definition of Figure class. It actually is a subclass of plot class defined in bokeh.models module.
Figure class simppfies plot creation. It contains various methods to draw different vectorized graphical glyphs. Glyphs are the building blocks of Bokeh plot such as pnes, circles, rectangles, and other shapes.
bokeh.apppcation
Bokeh package Apppcation class which is a pghtweight factory for creating Bokeh Documents. A Document is a container for Bokeh Models to be reflected to the cpent side BokehJS pbrary.
bokeh.server
It provides customizable Bokeh Server Tornadocore apppcation. Server is used to share and pubpsh interactive plots and apps to an audience of your choice.
Advertisements