how do i modify my series to give the out i want?
dfloss['net'].head()
Output was
2326 -99275.0
3795 -1900853.0
3857 -1589759.0
3941 -1234893.0
4038 -1992320.0
Name: net, dtype: float64
the output i want is
-99275.0
-1900853.0
-1589759.0
-1234893.0
-1992320.0
Name: net, dtype: float64