Simplicity of visualization of pandas data

Visualizing pandas data is incredibly simple as pandas is built with tight integration with the matplotlib framework. To demonstrate how simple it is to visualize data with pandas, the following code plots the stock data we just retrieved from Yahoo! Finance:

In [40]:
   # plot the Adj Close values we just read in
   goog.plot(y='Adj Close');
Simplicity of visualization of pandas data

Note

We will dive deeper and broader into pandas data visualization in a section dedicated to it later in this book.

Get Learning pandas now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.