Get startedGet started for free

Describing data

Let continue investigating our historical stock data for Alphabet. In this exercise you will be asked to look at the summary statistics for the dataset. This is something you will want to do with most financial data to understand its range and shape. Once again the data is loaded into a DataFrame named alphabet.

This exercise is part of the course

Intermediate Python for Finance

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Get stats for all numeric columns
alphabet.____()
Edit and Run Code