|
990 | 990 | " raw_label = plot_kwargs[\"raw_label\"]\n", |
991 | 991 | " if raw_label is None:\n", |
992 | 992 | " if proportional:\n", |
993 | | - " raw_label = \"Proportion of Success\" if effect_size_type != \"cohens_h\" else \"Value\"\n", |
| 993 | + " raw_label = \"Proportion of success\" if effect_size_type != \"cohens_h\" else \"Value\"\n", |
994 | 994 | " else:\n", |
995 | 995 | " raw_label = yvar \n", |
996 | 996 | "\n", |
|
1004 | 1004 | "\n", |
1005 | 1005 | " # Set contrast axes y-label.\n", |
1006 | 1006 | " contrast_label_dict = {\n", |
1007 | | - " \"mean_diff\": \"Mean Difference\",\n", |
1008 | | - " \"median_diff\": \"Median Difference\",\n", |
| 1007 | + " \"mean_diff\": \"Mean difference\",\n", |
| 1008 | + " \"median_diff\": \"Median difference\",\n", |
1009 | 1009 | " \"cohens_d\": \"Cohen's d\",\n", |
1010 | 1010 | " \"hedges_g\": \"Hedges' g\",\n", |
1011 | 1011 | " \"cliffs_delta\": \"Cliff's delta\",\n", |
1012 | 1012 | " \"cohens_h\": \"Cohen's h\",\n", |
1013 | 1013 | " }\n", |
1014 | 1014 | "\n", |
1015 | 1015 | " if proportional and effect_size_type != \"cohens_h\":\n", |
1016 | | - " default_contrast_label = \"Proportion Difference\"\n", |
| 1016 | + " default_contrast_label = \"Proportion difference\"\n", |
1017 | 1017 | " else:\n", |
1018 | 1018 | " default_contrast_label = contrast_label_dict[effect_size_type]\n", |
1019 | 1019 | "\n", |
|
0 commit comments