diff --git a/pandasgui/store.py b/pandasgui/store.py index 46cdd51..7909c05 100644 --- a/pandasgui/store.py +++ b/pandasgui/store.py @@ -349,6 +349,7 @@ def refresh_statistics(self, force=False): "StdDev": df.std(numeric_only=True), "Min": df.min(numeric_only=True), "Max": df.max(numeric_only=True), + "Sum": df.sum(numeric_only=True), }, index=df.columns )