From e6c4ad6205502bf58616beffa331c4b93b3e72e3 Mon Sep 17 00:00:00 2001 From: Tom Pollard Date: Tue, 4 Jun 2024 03:01:02 -0400 Subject: [PATCH] groupby must be provided as a str, not list. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98c4465..9a92fe2 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ categorical = ['ICU', 'death'] 5. Optionally, a categorical variable for stratification, a list of non-normal variables, and a dictionary of alternative labels: ```python -groupby = ['death'] +groupby = 'death' nonnormal = ['Age'] labels={'death': 'mortality'} ```