Python ANOVA Using SciPy, Jupyter Notebook and Pandas

preview_player
Показать описание
A demonstration on how you can carry out an one-way ANOVA using scipy and Python. It is carried out using the PlantGrowth dataset loaded into a Pandas data frame.

-~-~~-~~~-~~-~-
Please watch: "Tutorial - "Pure" Python ANOVA using SciPy to get p-values"
-~-~~-~~~-~~-~-
Рекомендации по теме
Комментарии
Автор

I'm getting error : DataFrame object has no attribute "group" ?

bilhanbel
Автор

Could you provide the plantGrowth dataset

oloyedeabdulganiyu
Автор

You can simplify it by using a list:
l_data = [data['weight'][data.group == grp] for grp in grps]
f, p = f_oneway(*l_data)

davidmakovoz
Автор

Thank you for a great tutorial on how to do statistics (ANOVA) in Python. I would suggest that you added some sound to your next video. That said, the video is still great. Thanks again, for the great job.

fredrikpersson
Автор

where does the ctrl, trt1 came from ??

chitralalawat