A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/python/funnel-chart-in-pygal/ below:

Funnel Chart in Pygal - GeeksforGeeks

Funnel Chart in Pygal

Last Updated : 28 Jul, 2020

Pygal

is a Python module that is mainly used to build SVG (Scalar Vector Graphics) graphs and charts. SVG is a vector-based graphics in the XML format that can be edited in any editor. Pygal can create graphs with minimal lines of code that can be easy to understand and write.

Funnel in PygalFunnel charts

are those type of charts which are often used to represent various stages mainly in sales and service process and allows to show the amount of revenue for each of the stages. This chart is much beneficial for identifying potential errors in organization sales and service progress. The funnel chart is similar to the stacked bar chart. The funnel chart helps to summarize data and to track sales conversion and retention rates. And moreover, it can be used to track the success of a business strategy. It can be created using the

Funnel()

method.

Syntax:
funnel_chart = pygal.Funnel()
Example 1: Python3 1==
# importing pygal
import pygal

# creating the chart object
funnel = pygal.Funnel()

# naming the title
funnel.title = 'Funnel'        

# Random data
funnel.add('A', [26, 22, 39, 39, 32, 30, 33, 24, 24, 30])
funnel.add('B', [31, 40, None, None, None, None, 40, 32, 25, 31])
funnel.add('C', [37, 27, 31, 20, None, 32, 24, 39, 29, 22])
funnel.add('D', [38, None, 20, 29, 33, 23, 32, 33, 32, 23])

funnel
Output: Example 2: Python3 1==
# importing pygal
import pygal
import numpy


# creating the chart object
funnel = pygal.Funnel()

# naming the title
funnel.title = 'Funnel'        

# Random data
funnel.add('A', numpy.random.rand(10))
funnel.add('B', numpy.random.rand(10))
funnel.add('C', numpy.random.rand(10))
funnel.add('D', numpy.random.rand(10))

funnel
Output:

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4