Pandas uses provides multiple ways to make graphs of the data inside the data frame. It uses matplotlib for that purpose.
The basic graphs have their wrappers for both DataFrame and Series objects:
Line Plot
df = pd.DataFrame({'x': [10, 8, 10, 7, 7, 10, 9, 9],
'y': [6, 4, 5, 5...