March 2020
Beginner to intermediate
352 pages
8h 40m
English
A lollipop chart can be used to display ranking in the data. It is similar to an ordered bar chart.
Let's consider the carDF dataset. It can be found in the GitHub repository for chapter 2. Alternatively, it can be used from the GitHub link directly, as mention in the following code:
#Read the datasetcarDF = pd.read_csv('https://raw.githubusercontent.com/PacktPublishing/hands-on-exploratory-data-analysis-with-python/master/Chapter%202/cardata.csv')
#Group by manufacturer ...
Read now
Unlock full access