Visualizing trends

Introduzione a Python per la finanza

Adina Howe

Instructor

Your mission - outlier?

peratio

Introduzione a Python per la finanza

Step 1: Make a histogram

import matplotlib.pyplot as plt
plt.hist(hist_data, bins = 8)
plt.show()
Introduzione a Python per la finanza

Step 2: Identify the Outlier

  • Identify the outlier P/E ratio
  • Create a boolean array filter to subset this company
  • Filter out this company information from the provided datasets
Introduzione a Python per la finanza

Let's practice!

Introduzione a Python per la finanza

Preparing Video For Download...