import numpy as np
from matplotlib import pyplot as plt
from scipy.stats import friedmanchisquare
[docs]def vertical_nemenyi_plot(data, num_reps,
alpha = 0.05,
cmap = plt.cm.Greens):
"""Vertical Nemenyi plot to compare model ranks and show differences."""
#Take a look at this implementation also:
# https://gist.github.com/ptasheq/ceb29503fbc16b048bb121684f7fe7dc
# pass
return
[docs]def nemenyi_test():
"""
Nemenyi post-hoc analysis.
Returns
-------
"""
# Take a look at this implementation also:
# https://gist.github.com/ptasheq/ceb29503fbc16b048bb121684f7fe7dc
# pass
return