gpt4 book ai didi

python - 在 Python 中使用 statsmodels 进行回归分析

转载 作者:太空宇宙 更新时间:2023-11-04 00:19:41 24 4
gpt4 key购买 nike

我是 Python 的新手,正在学习如何在 Python 中使用 statsmodels 进行回归分析(从 R 迁移到 Python 并以 R 的方式思考)。我的最低工作示例如下:

Income  =  [80, 100, 120, 140, 160, 180, 200, 220, 240, 260]
Expend = [70, 65, 90, 95, 110, 115, 120, 140, 155, 150]

import pandas as pd
df1 = pd.DataFrame(
{'Income': Income,
'Expend': Expend
})

#regression with formula
import statsmodels.formula.api as smf

#instantiation
reg1 = smf.ols('Expend ~ Income', data = df1)

#members of reg object
print(dir(reg1))

['__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_data_attr', '_df_model', '_df_resid', '_fit_ridge', '_get_init_kwds', '_handle_data', '_init_keys', '_setup_score_hess', 'data', 'df_model', 'df_resid', 'endog', 'endog_names', 'exog', 'exog_names', 'fit', 'fit_regularized', 'formula', 'from_formula', 'get_distribution', 'hessian', 'information', 'initialize', 'k_constant', 'loglike', 'nobs', 'predict', 'rank', 'score', 'weights', 'wendog', 'wexog', 'whiten']

#members of the object provided by the modelling.
print(dir(reg1.fit()))

['HC0_se', 'HC1_se', 'HC2_se', 'HC3_se', '_HCCM', '__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_cache', '_data_attr', '_get_robustcov_results', '_is_nested', '_wexog_singular_values', 'aic', 'bic', 'bse', 'centered_tss', 'compare_f_test', 'compare_lm_test', 'compare_lr_test', 'condition_number', 'conf_int', 'conf_int_el', 'cov_HC0', 'cov_HC1', 'cov_HC2', 'cov_HC3', 'cov_kwds', 'cov_params', 'cov_type', 'df_model', 'df_resid', 'eigenvals', 'el_test', 'ess', 'f_pvalue', 'f_test', 'fittedvalues', 'fvalue', 'get_influence', 'get_prediction', 'get_robustcov_results', 'initialize', 'k_constant', 'llf', 'load', 'model', 'mse_model', 'mse_resid', 'mse_total', 'nobs', 'normalized_cov_params', 'outlier_test', 'params', 'predict', 'pvalues', 'remove_data', 'resid', 'resid_pearson', 'rsquared', 'rsquared_adj', 'save', 'scale', 'ssr', 'summary', 'summary2', 't_test', 'tvalues', 'uncentered_tss', 'use_t', 'wald_test', 'wald_test_terms', 'wresid']

我想了解 print(dir(reg1))print(dir(reg1.fit())) 的输出。我在哪里可以获得这些组件的文档和这些部分的示例?

最佳答案

伙计,这就是简单的“谷歌搜索”/阅读文档页面。可能令人困惑的是 statsmodels.formula.api 的使用。这是为了提供entering R-style formulas的可能性.

statsmodels 的文档位于此处:StatsModels Index Page .向下滚动,直到到达“目录”。点击Linear Regression .向下滚动到 Module Reference,可以看到指向 Model ClassesResult Classes 的链接。

@Bill Bell 已经指出了正确的模型类:是OLS .在 methods 下方,您可以找到指向 fit 文档的链接,其中指出 fit 返回一个 RegressionResults对象。

RegressionResults doc page解释您感兴趣的属性。

注意:

  • 以双下划线 __ 开始/结束的属性,例如__class__ 等是Python special attributes .
  • 您可以通过附加 ? 获得 Python 解释器内部的帮助,例如通过键入 reg1?(很像在 R 中你在前面加上 ?)

关于python - 在 Python 中使用 statsmodels 进行回归分析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49671363/

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