Tagged articles
14 articles
Page 1 of 1
Python Programming Learning Circle
Python Programming Learning Circle
May 26, 2023 · Fundamentals

Introduction to Statsmodels: Installation, Data Loading, and Basic Statistical Analysis with Python

This article introduces the Python Statsmodels library, explains its key features such as linear regression, GLM, time‑series and robust methods, shows how to install it, load data with pandas, perform descriptive statistics, visualizations, hypothesis testing, and simple and multiple linear regression examples.

PythonStatistical ModelingStatsmodels
0 likes · 6 min read
Introduction to Statsmodels: Installation, Data Loading, and Basic Statistical Analysis with Python
Model Perspective
Model Perspective
Dec 20, 2022 · Fundamentals

Master Stationary Time Series & ARMA Models: Theory, Examples, Python Code

This article explains the fundamentals of weakly stationary time series, defines mean, variance, autocovariance, and autocorrelation functions, introduces AR, MA, ARMA, and ARIMA models, discusses model identification using ACF/PACF, selection criteria like AIC/SBC, diagnostic testing, and provides Python statsmodels code examples for implementation.

ARMAPythonStatsmodels
0 likes · 18 min read
Master Stationary Time Series & ARMA Models: Theory, Examples, Python Code
Model Perspective
Model Perspective
Jul 15, 2022 · Fundamentals

How to Perform Two-Way ANOVA with Python’s statsmodels: Theory and Code

This article explains the theory behind two‑factor ANOVA, distinguishes cases with and without interaction, presents the mathematical model, and demonstrates a complete Python implementation using statsmodels, including data setup, model fitting, and interpretation of the ANOVA table.

PythonStatsmodelsexperimental design
0 likes · 6 min read
How to Perform Two-Way ANOVA with Python’s statsmodels: Theory and Code
Model Perspective
Model Perspective
Jul 11, 2022 · Fundamentals

How to Perform One-Way ANOVA in Python: A Step-by-Step Guide

This article explains the concept of one‑way ANOVA, walks through a real‑world example comparing four manufacturing processes, and demonstrates how to conduct the analysis in Python using statsmodels, interpreting the resulting F‑statistic and p‑value to assess significance.

ANOVAPythonStatsmodels
0 likes · 6 min read
How to Perform One-Way ANOVA in Python: A Step-by-Step Guide
Python Crawling & Data Mining
Python Crawling & Data Mining
Jun 19, 2021 · Fundamentals

Essential Python Data Analysis Libraries You Must Know

This article provides a concise overview of key Python data‑analysis libraries—including NumPy, pandas, matplotlib, IPython/Jupyter, SciPy, scikit‑learn, and statsmodels—explaining their core features, typical use cases, and how they interoperate to form a powerful scientific computing ecosystem.

MatplotlibNumPyPython
0 likes · 12 min read
Essential Python Data Analysis Libraries You Must Know
Python Crawling & Data Mining
Python Crawling & Data Mining
Aug 28, 2020 · Artificial Intelligence

Build and Optimize Multiple Linear Regression in Python

This article walks through constructing a multiple linear regression model for house price prediction using Python, covering data exploration, dummy variable creation, model fitting with statsmodels, diagnosing multicollinearity via VIF, and applying optimizations to improve predictive accuracy.

Data ScienceDummy VariablesMultiple Linear Regression
0 likes · 11 min read
Build and Optimize Multiple Linear Regression in Python
360 Tech Engineering
360 Tech Engineering
Aug 24, 2018 · Artificial Intelligence

Time Series Forecasting with Seasonal Decomposition and ARIMA

This article explains how to process a periodic time‑series, split it into training and test sets, smooth the data, decompose it with statsmodels' seasonal_decompose, forecast the trend using an ARIMA model, and evaluate the results with RMSE, providing a practical workflow for accurate forecasting.

ARIMAPythonStatsmodels
0 likes · 5 min read
Time Series Forecasting with Seasonal Decomposition and ARIMA