def __show_results_in_table(self):
"""Show results in pandas DataFrame format."""
df = super(ViewPresenter, self)._prepare_dataframe()
if df is not None:
# Better visualization in command line
pd.set_option('expand_frame_repr', False)
pd.set_option('display.max_columns', 999)
display(df)
评论列表
文章目录