diff --git a/acro/acro_tables.py b/acro/acro_tables.py index 3cc1809..4fbd3c0 100644 --- a/acro/acro_tables.py +++ b/acro/acro_tables.py @@ -210,8 +210,7 @@ def pivot_table( # pylint: disable=too-many-arguments,too-many-locals dropna: bool = True, margins_name: str = "All", observed: bool = False, - sort: bool = True, - show_suppressed: bool = False, + sort: bool = True ) -> DataFrame: """Create a spreadsheet-style pivot table as a DataFrame. @@ -255,8 +254,6 @@ def pivot_table( # pylint: disable=too-many-arguments,too-many-locals all values for categorical groupers. sort : bool, default True Specifies if the result should be sorted. - show_suppressed : bool, default False - how the totals are being calculated when the suppression is true. Returns -------