Python 2.7 - statsmodels - formatting and writing summary output

后端 未结 5 1711
独厮守ぢ
独厮守ぢ 2021-02-05 20:55

I\'m doing logistic regression using pandas 0.11.0(data handling) and statsmodels 0.4.3 to do the actual regression, on Mac OSX Lion.

I\'m goin

5条回答
  •  囚心锁ツ
    2021-02-05 21:47

    • results.params : for coefficient
    • results.pvalues : for p-values

    BTW you can use dir(results) to find out all the attribute of an object

提交回复
热议问题