April 2018
Beginner
238 pages
7h 13m
English
We can use this Python script:
import pandasimport matplotlib%matplotlib inlinebaby_name = ['Alice','Charles','Diane','Edward']number_births = [96, 155, 66, 272]dataset = list(zip(baby_name,number_births))df = pandas.DataFrame(data = dataset, columns=['Name', 'Number'])df['Number'].plot()
With the resulting plot as:

This is fictitious data, but it does show a good, clean graphic.