March 2020
Beginner to intermediate
352 pages
8h 40m
English
Let's look at the process of creating the line chart:
import matplotlib.pyplot as plt
plt.plot(df)
plt.show()
Here is the code if we put it all together:
import matplotlib.pyplot as pltplt.rcParams['figure.figsize'] = (14, 10)plt.plot(df)
And the plotted graph looks something like this:

In the preceding example, we assume the data is available in the CSV format. ...
Read now
Unlock full access