p-value

How to get/isolate the p-value from 'AnovaResults' object in python?

How to get/isolate the p-value from 'AnovaResults' object in python? Question: I want to use one way repeated measures anova in my dataset to test whether the values of 5 patients differ between the measured 3 days. I use AnovaRM from statsmodels.stats.anova and the result is an ‘AnovaResults’ object. I can see the p-value with …

Total answers: 2

Calculating adjusted p-values in Python

Calculating adjusted p-values in Python Question: So, I’ve been spending some time looking for a way to get adjusted p-values (aka corrected p-values, q-values, FDR) in Python, but I haven’t really found anything. There’s the R function p.adjust, but I would like to stick to Python coding, if possible. Is there anything similar for Python? …

Total answers: 4