"#Making lists for weak initial skills and strong initial skills. A weak initial skill are the first half of all skills ordered by their inital rating. All the other skills are strong skills.\n",
"for k in range(len(names)):\n",
...
...
@@ -466,16 +493,19 @@
" print(\"Wilcoxon signed-rank test on Pre and Post Data:\")\n",
Plotting our graph, if the bar is green it is an improvement in rating for the subskill. If the bar is red it is a decrease in rating for the subskill.
When the bar is red, the initial rating is the top of the bar, the final rating is the bottom of the bar. If the bar is green, this is reversed.
'''
import matplotlib.pyplot as plt
for j in range(len(names)):
plt.figure(figsize=(12, 6))
for i, (theme, pre_rating) in enumerate(allPreDicts[j].items()):
#Making lists for weak initial skills and strong initial skills. A weak initial skill are the first half of all skills ordered by their inital rating. All the other skills are strong skills.