Poisson Regression

Poisson Regression

Poisson Regression

Description

Poisson Regression is a type of linear regression used to model the countable data.

Why to use

For regression analysis of count data

When to use

For numerical variables

When not to use

For textual variables

Prerequisites

  • The data should contain variables having countable data points.
  • The data should not contain any missing/NaN values.

Input

Numerical variable which is countable.

Output

  • Regression Key Performance Indicators (KPIs)
  • Regression Statistics
  • Actual Vs. Predicted scatter plot

Statistical Methods used

  • Deviance
  • Mean Absolute Error
  • Mean Squared Error

Limitations

It can be used only on numerical data.



    • Related Articles

    • Regression

      Regression is predictive modeling. It is a statistical method, used in finance, investment, and other disciplines, that attempts to determine the strength and character of the relationship between one dependent variable (usually denoted by Y) and a ...
    • Polynomial Regression

      Polynomial Regression Description Polynomial Regression is a supervised learning method in which the relationship between the independent and dependent variables is modeled as an nth degree polynomial. Why to use Predictive Modeling When to use When ...
    • Ridge Regression

      Ridge Regression Description Predict and analyze data points as output for multiple regression data that suffer from multicollinearity by controlling the magnitude of coefficients to avoid over-fitting. Why to use Predictive Modeling When to use To ...
    • Lasso Regression

      Lasso Regression Description Lasso Regression is used to penalize the regression method to select a subset of variables by imposing a constraint on model parameters. Why to use Predictive Modeling When to use For variables having high ...
    • Linear Regression

      Regression is predictive modeling. It is a statistical method used in finance, investment, and other disciplines that attempts to determine the strength and character of the relationship between one dependent variable (usually denoted by Y) and a ...