How to Plot a Pie Chart using Bokeh Library in Python

How to Plot a Pie Chart using Bokeh Library in Python

Bokeh is a Python library which is used for data visualization. It creates its plots using HTML and JavaScript languages, and it also targets modern website browsers to provide presentation elegant, concise construction of novel graphics good high-performance interactivity.

In this tutorial, we will learn how to plot a pie chart by using the Bokeh library in Python. Although the bokeh library does not provide any module for directly plotting a pie chart, users can use wedge glyphs to create the pie chart.

The wedge () function has the following primary parameters:

  • The x and y coordinates of wedge
  • The radius
  • The start_angle of wedge
  • The end_angle of wedge

To plot wedges in such a way that the output looks like a pie chart. However, the x and y coordinates of the wedge and the radius parameters, the user has to adjust the start_angle and end_angle parameters.

Example 1:

Output:

How to Plot a Pie Chart using Bokeh Library in Python

Example 2:

In this example, the user will visualize some data. The data contains the detail of the field in which a company invested in 2014 – 15. The fields are:

  • Customers: 5%
  • Innovation: 1%
  • Shares: 2%
  • Marketing: 1%
  • Technology: 1%

The user can convert the percentage into radian for finding the value of start_angle and end_angle by using the following formula:

Code:

Output:

How to Plot a Pie Chart using Bokeh Library in Python

Conclusion

In this tutorial, we have discussed how we can plot a pie chart for the visualization of data by using the bokeh library in Python.


原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/263326.html

(0)
上一篇 2022年5月30日
下一篇 2022年5月30日

相关推荐

发表回复

登录后才能评论