statannotations
statannotations copied to clipboard
add statistical significance annotations on seaborn plots. Further development of statannot, with bugfixes, new features, and a different API.
Stumbled over the error while dealing with Nan values in paired tests. The code: data=df_freq correction='BH' tests=['t-test_paired','Wilcoxon'] pal = sns.color_palette(['black'], len(data[hue_var].unique())) pairs = [('C1D1','C2D1'),('C1D1','C4D1'),('C1D1','Progression')] for test in tests: kwargs =...
Current version require seaborn>=0.9.0,= 0.12. would it be possible to bump the versions in the requirements? Thanks
It would be nice to be able to add a plot title on top of all the annotations. Something like: `statannotations.Annotator.Annotator.configure(title='foobar',...)` I guess the function would somehow have to take...
Hi, Thanks for developing and maintaining this package first and foremost! I'd like to show Jensen-Shannon divergence metrics between groups instead of statistical tests and so StatTest to implement a...
While having the `loc=inside` option set, is it possible to show the annotations outside of the y-axis limit? I tried to do that by changing the y limits after using...
Hello! Full disclosure, I am currently using Seaborn v 0.12, which I know is not fully supported as of yet. Currently, I have had no issues running statannotations up until...
I think I might be doing something wrong here, but... ```py import seaborn as sns from statannotations.Annotator import Annotator iris = sns.load_dataset("iris") iris = pd.melt(iris, "species", var_name="measurement") pair_list = [(('sepal_length',...
Hey @trevismd Right now Annotator does not work if any of the groups have only NaN values. Is there a way to perform a test between the other groups and...
Hello, Thank you for your work. I've created a nice catplot with different columns. But I cannot add statistics with Annotator as you did in your example 2facets.png How did...