Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 505 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 505 Bytes

pandas-challenge

Module 4 Challenge

Sources I used while writting my code:

https://stackoverflow.com/questions/29765548/remove-index-name-in-pandas
    To delete index name
        Input [19] : .rename_axis(None)

https://stackoverflow.com/questions/32464280/how-to-convert-currency-column-with-and-to-numbers
    To undo currency formatting on ‘Per Student Budget’ column in order to use pd.cut 
        Input [26] : .replace('[\$,]', '', regex=True).astype(float)