project URL: http://chuanshuoge-yahoo-fin.surge.sh/
used to have lots of truncation when printing pandas frame
with new pandas setting, all rows and columns are printed
import pandas as pd
pd.set_option('display.max_rows', None)
pd.set_option('display.max_columns', None)
pd.set_option('display.width', None)
pd.set_option('display.max_colwidth', -1)
reference:
yahoo-fin
code
No comments:
Post a Comment