Guest User

Untitled

a guest
May 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. myTradeFrame['coll_cusip'].unique()
  2.  
  3. array(['BRSUJX0F8', 'BRSU17NB8', '010831BE4', ..., '912828J84',
  4. '912828R36', '912810RC4'], dtype=object)
  5.  
  6. ('BRSUJX0F8', 'BRSU17NB8', '010831BE4', ..., '912828J84',
  7. '912828R36', '912810RC4')
  8.  
  9. tuple(myTradeFrame['coll_cusip'].unique())
  10.  
  11. array = myTradeFrame['coll_cusip'].unique()
  12. list = array.tolist()
Add Comment
Please, Sign In to add comment