pk4adi.utils ============ .. py:module:: pk4adi.utils .. autoapi-nested-parse:: @File : utils.py @Contact : Jiang Feng(silencejiang@zju.edu.cn) @License : (C)Copyright 2004-2020, Zhejiang University Functions --------- .. autoapisummary:: pk4adi.utils.print_table Module Contents --------------- .. py:function:: print_table(df, floatfmt='.3f', tablefmt='simple') Pretty display of table. :param df: Dataframe to print. :type df: a pandas.DataFrame. :param floatfmt: Decimal number formatting. :type floatfmt: string. :param tablefmt: Table format (e.g. 'simple', 'plain', 'html', 'latex', 'grid', 'rst'). For a full list of available formats, please refer to https://pypi.org/project/tabulate/. :type tablefmt: string. :rtype: Nothing will be returned. .. rubric:: Notes To be added.