Guest User

Untitled

a guest
May 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import numpy as np
  2. import pandas as pd
  3. df1 = pd.DataFrame({'_a':[1,1,1,2,2,3,3],'_b':[3,4,5,3,3,3,9]})
  4. df1
  5.  
  6. _a _b
  7. 0 1 4
  8. 1 3 9
  9. 2 4 3
  10. 3 2 5
  11.  
  12. _a _b
  13. 0 4 3
  14. 1 3 9
  15. 2 1 4
  16. 3 2 5
Add Comment
Please, Sign In to add comment