Could you please check this code?
I am solving the Code project: COVID Data Analysis on Python for Data Science. INSTRUCTIONS You are working with the COVID dataset for California, which includes the number of cases and deaths for each day of 2020. Find the day when the deaths/cases ratio was largest. To do this, you need to first calculate the deaths/cases ratio and add it as a column to the DataFrame with the name 'ratio', then find the row that corresponds to the largest value. MY CODE import pandas as pd df = pd.read_csv("https://www.sololearn.com/uploads/ca-covid.csv") df.drop('state', axis=1, inplace=True) df.set_index('date', inplace=True) df['ratio'] = df['deaths']/df['cases'] max_ratio = df['ratio'].max() print(df[df['ratio']==max_ratio]) I tried in VisualStudio Code and it is perfect but I am not able to pass the code project. Any help would be appreciated!!