Florian Charlier

Results 50 comments of Florian Charlier

Yes, statannotations works well with the hue argument in FacetGrid too but pairs are defined at plot level, so the `x`and `hue` should be the same across plots, which is...

Of course! This is correct, but it is also the case with `plot_and_annotate_facet` (I should make that clearer). Depending on the correction method, you can fix this by either *...

Hi! You can configure `pvalue_format_string` as you wish. For example, for 2 decimal places in scientific notation, ```py annotator.configure(test='t-test_ind', text_format='full', pvalue_format_string='{:.2e}') ``` Which overrides the default defined in https://github.com/trevismd/statannotations/blob/8f148c16944a708dd3d68c9ec4e2772c972fc403/statannotations/PValueFormat.py#L33

I've seen much interest in the discussions tab for an upgrade to the more recent version of Seaborn, and they just released an even newer minor-but-actually-major version, so I think...

Hi! Sorry the first answer's coming late and isn't probably what you want, but here it is anyway :-) Until Catplots are supported, if you're willing to switch over to...

Hello, I think there are major changes between 0.11 and 0.12 (including `pandas`), that would require major rework in this package. Maybe someone reading this is interested in taking up...

Hi! You should use the `plot_and_annotate_facets` function, see some documentation here: https://statannotations.readthedocs.io/en/latest/statannotations.html#statannotations.Annotator.Annotator.plot_and_annotate_facets, to read if/when you are familiar with the basic flows of the package explained in the example notebook...

Here should be the code to this image (with the dataset used in the tutorial, overdue part 2 will cover FacetGrids). ```py annot = Annotator(None, pairs) g = sns.FacetGrid(sf, col='State',...

Doesn't `plt.title` work in all cases? The parameter could be a shortcut to that when one does not need more customization?

Your case is clear, it's a valid request!