Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import pandas as pd
  2.  
  3. # display full columns
  4. pd.set_option('display.max_columns', None)
  5.  
  6. # display full rows
  7. pd.set_option('display.max_rows', None)
  8.  
  9. # non-truncated col values
  10. pd.set_option('display.max_colwidth', -1)
  11.  
  12. # float format
  13. pd.set_option('display.float_format', '{:20,.2f}'.format)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement