gpt4 book ai didi

python - 在 Python 中使用带有 R 语法的 statsmodels.api 进行逻辑回归

转载 作者:太空宇宙 更新时间:2023-11-03 11:37:03 24 4
gpt4 key购买 nike

我正在尝试运行一个简单的逻辑回归函数。我有 4 个列,分别命名为 x1、x2、x3 和 x4。 x4 有一列只有零和一。所以,我用它作为我的因变量。为了预测因变量,我使用了自变量 x1、x2 和 x3。我的语法是否已关闭,或者如何在保持 Statsmodels.api 提供的 R 语法的同时正确完成数据的逻辑回归?

下面是我的代码:

import pandas as pd
import statsmodels.formula.api as smf

df = pd.DataFrame({'x1': [10, 11, 0, 14],
'x2': [12, 0, 1, 24],
'x3': [0, 65, 3, 2],
'x4': [0, 0, 1, 0]})

model = smf.logit(formula='x4 ~ x1 + x2 + x3', data=df).fit()
print(model)

以下是我的错误:

statsmodels.tools.sm_exceptions.PerfectSeparationError: Perfect separation detected, results not available

我明白这意味着什么,但我不明白如何避免这个问题。确认逻辑回归算法成功需要哪些值,我的语法是否正确,是否有更好的方法来解决我所做的(使用 R 语法)?

最佳答案

我可能误解了这个问题,但语法似乎很好——虽然我认为你想要 print(model.summary()) 而不是 print(model) .问题是您的样本量太小。

例如,这个有效:

import pandas as pd
import numpy as np
import statsmodels.formula.api as smf

np.random.seed(2)
n=100
df = pd.DataFrame({'x1':np.random.randn(n),
'x2': np.random.randn(n),
'x3': np.random.randn(n),
'x4': np.random.randint(0,2,n)})

model = smf.logit(formula='x4 ~ x1 + x2 + x3', data=df).fit()
print(model.summary())

更改为 n=10 会在摘要表下产生以下消息:

Possibly complete quasi-separation: A fraction 0.40 of observations can be perfectly predicted. This might indicate that there is complete quasi-separation. In this case some parameters will not be identified.

更改为 n=5 产量

PerfectSeparationError: Perfect separation detected, results not available

关于python - 在 Python 中使用带有 R 语法的 statsmodels.api 进行逻辑回归,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57369640/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com