import pandas as pd
donor_df=pd.read_csv('Election_Donor_Data.csv')
top_donor=donor_df['contb_receipt_amt'].copy()
top_donor.sort()
top_donor
sort method is not getting applied on top_donor giving an error.why?
import pandas as pd
donor_df=pd.read_csv('Election_Donor_Data.csv')
top_donor=donor_df['contb_receipt_amt'].copy()
top_donor.sort()
top_donor
sort method is not getting applied on top_donor giving an error.why?