import pandas as pd
df = pd.read_csv(r"E:\Downloads Tab\Flavors.csv")
df
group_by_frame = df.groupby('Base Flavor')
group_by_frame.mean()
- THIS LINE HERE IS NOT RUNNING enter image description here
The video I'm following shows the exact same syntax and is functioning properly.
Tried restarting but did not make any changes to the syntax