import numpy as np import pandas as pd import matplotlib.pyplot as plt df = pd.read_csv('https://jonghank.github.io/ase1302/files/FanGraphs_Leaderboard_2019.csv') df # your code here AL = ['Yankees', 'Rays', 'Red Sox', 'Blue Jays', 'Orioles', 'Twins', 'Indians', 'White Sox', 'Royals', 'Tigers', \ 'Astros', 'Athletics', 'Rangers', 'Angels', 'Mariners'] NL = ['Braves', 'Nationals', 'Mets', 'Phillies', 'Marlins', 'Cardinals', 'Brewers', 'Cubs', 'Reds', 'Pirates', 'Dodgers', \ 'Diamondbacks', 'Giants', 'Padres', 'Rockies'] # your code here # your code here