Skip to content

Commit

Permalink
updated print message of df.info()
Browse files Browse the repository at this point in the history
  • Loading branch information
zyxue committed Jun 13, 2018
1 parent cf5d1c9 commit a342ad2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ncbitax2lin.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ def main():
df.reset_index(drop=True, inplace=True)
logging.info('# of tax ids: {0}'.format(df.shape[0]))
# log summary info about the dataframe
df.info()
print('=' * 50)
df.info(verbose=True, memory_usage="deep")
print('=' * 50)

# force to use global variable TAXONOMY_DICT because map doesn't allow
# passing extra args easily
Expand Down

0 comments on commit a342ad2

Please sign in to comment.