Running scipy's oneway anova in a script

后端 未结 1 899
一向
一向 2020-12-31 20:41

I have a problem. I want to run the scipy.stats f_oneway() ANOVA in a script that loads a data-archive containing groups with numpy arrays like so:

archive{\         


        
1条回答
  •  独厮守ぢ
    2020-12-31 21:04

    I suppose you should try:

    scipy.stats.f_oneway(*archive.values())
    

    0 讨论(0)
提交回复
热议问题