We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It appears the way Matplotlib handles colour bars from version 3.5.0 breaks the significance plots colour bar:
To Reproduce
import matplotlib.pyplot as plt import scikit_posthocs as sp import statsmodels.api as sa x = sa.datasets.get_rdataset('iris').data x.columns = x.columns.str.replace('.', '') pc = sp.posthoc_ttest(x, val_col='SepalWidth', group_col='Species', p_adjust='holm') heatmap_args = {'linewidths': 0.25, 'linecolor': '0.5', 'clip_on': False, 'square': True, 'cbar_ax_bbox': [0.82, 0.35, 0.04, 0.3]} sp.sign_plot(pc, **heatmap_args) plt.show()
Expected behaviour
The text was updated successfully, but these errors were encountered:
Thank you for this fix! I probably need to test the other functions. Time passes and third-party packages change their behavior.
Sorry, something went wrong.
maximtrp
No branches or pull requests
It appears the way Matplotlib handles colour bars from version 3.5.0 breaks the significance plots colour bar:
To Reproduce
Expected behaviour
The text was updated successfully, but these errors were encountered: