import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
# Path of the file to read
fifa_filepath = "./fifa.csv"
# Readd the file into a variable fifa_data
fifa_data = pd.read_csv(fifa_filepath, index_col="Date", parse_dates=True)
# Print the first 5 rows of the data
fifa_data.head()