Skip to content

Commit

Permalink
changed pandas options from precision to display.precision and from m…
Browse files Browse the repository at this point in the history
…ax_colwidth to display.max_colwidth
  • Loading branch information
omerwe committed Apr 19, 2022
1 parent bbfb3d9 commit d571051
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ldsc.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)
pd.set_option('precision', 4)
pd.set_option('max_colwidth',1000)
pd.set_option('display.precision', 4)
pd.set_option('display.max_colwidth',1000)
np.set_printoptions(linewidth=1000)
np.set_printoptions(precision=4)

Expand Down

0 comments on commit d571051

Please sign in to comment.