You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran multiple comparison corrections using Benjamini-Hochberg procedure. Some of my tests have a * (ns) symbol. Wonder what this means? It does also not appear in the table that is printed to console before running the tests:
p-value annotation legend:
ns: p <= 1.00e+00
*: 1.00e-02 < p <= 5.00e-02
**: 1.00e-03 < p <= 1.00e-02
***: 1.00e-04 < p <= 1.00e-03
****: p <= 1.00e-04
The text was updated successfully, but these errors were encountered:
It means that due to the correction method applied, your "*" which means between .01 and .05 is actually statistically not significant (ns).
You can see the correction_formatargument of Annotator.configure for changing this rendering (for example to simply ns with .configure(correction_format="replace"). You'll just have to be mindful that the legend will not be accurate anymore (but you see the (ns) in the statistical test result).
I ran multiple comparison corrections using Benjamini-Hochberg procedure. Some of my tests have a
* (ns)
symbol. Wonder what this means? It does also not appear in the table that is printed to console before running the tests:The text was updated successfully, but these errors were encountered: