Python/Module | statsmodels(2)
-
statsmodels을 이용한 Ordinary Least Squares Regression
statsmodels을 이용하여 OLS 회귀를 실시하여 보자. 이하의 내용은 아래의 링크를 참고(사실상 번역)하였다. OLS Regression과 classical assumptions을 알고 있으면 이 글을 이해하는 데에 도움이 될 것이다. Ordinary Least Squares — statsmodels Ordinary Least Squares import numpy as np import pandas as pd import matplotlib.pyplot as plt import statsmodels.api as sm from statsmodels.sandbox.regression.predstd import wls_prediction_std np.random.seed(9876789) OLS esti..
2021.01.06 -
'statsmodels'이란?
Introduction — statsmodels statsmodels is a Python module that provides classes and functions for the estimation of many different statistical models, as well as for conducting statistical tests, and statistical data exploration. An extensive list of result statistics are available www.statsmodels.org 0. 소개 statsmodels은 다양한 통계 검정(test)과 추정(estimation)에 필요한 함수와 클래스를 제공하는 모듈이다. 위의 링크를 누르면 statsmod..
2020.12.28