Browsed by
Tag: statsmodels

Pythonのstatsmodelsを使って多項ロジットモデルを推定する
-How to estimate Multinomial logit using Python-

Pythonのstatsmodelsを使って多項ロジットモデルを推定する
-How to estimate Multinomial logit using Python-

statsmodelsのMNLogit(Multinomial Logit)は、多項ロジットモデルを推定するためのクラスです。多項ロジットモデルは、複数の選択肢…

もっと読む もっと読む

Pythonのstatsmodels.apiを用いてロジスティック回帰を行う
– How to estimate “logit” models using Python

Pythonのstatsmodels.apiを用いてロジスティック回帰を行う
– How to estimate “logit” models using Python

statsmodels.apiのLogitは、二項ロジスティック回帰を実施するためのクラスです。二項ロジスティック回帰は、2つのカテゴリをもつ従属変数(成功・失…

もっと読む もっと読む

Pythonのstatsmodels.apiモジュールを用いて一般化最小2乗法を行う
How to estimate “Generalized Least Squares” models using Python

Pythonのstatsmodels.apiモジュールを用いて一般化最小2乗法を行う
How to estimate “Generalized Least Squares” models using Python

一般化最小二乗法(GLS)は、異なる分散構造や相関構造を考慮した回帰モデルを扱う手法です。これは、データの誤差項が等分散かつ独立でない場合や、データ点間に相関が…

もっと読む もっと読む

Pythonのstatsmodelsモジュールを用いて重みづけ最小2乗法を行う
How to “Weighted Least Squares” using Python

Pythonのstatsmodelsモジュールを用いて重みづけ最小2乗法を行う
How to “Weighted Least Squares” using Python

statsmodels.apiのWLS(Weighted Least Squares)クラスは、重み付き最小二乗法を用いて回帰モデルを構築するためのクラスです。…

もっと読む もっと読む