I have the following pandas DataFrame from this CSV file
import pandas as pd
df=pd.read_csv('Last_year.csv')
df.groupby('School Status').size().plot(kind='pie', autopct='%1.1f%%')
I would like to know how I can remove the error which is causing me to have 3 divisions and not 2 as programmed
