What is PoissonZiGMLE in the StatsModels library?

This recipe explains what is PoissonZiGMLE in the StatsModels library

Recipe Objective - What is PoissonZiGMLE in the StatsModels library?

PoissonZiGMLE is a Maximum Likelihood Estimation of Poisson Model. This is an example of generic MLE, which has the same statistical model as discretemod.Poisson but adds offset and zero inflation. All methods and results are standard, except for the definition of the negative log-likelihood method. Gradients and Hessian matrices, and all the resulting statistics, are based on numerical differentiation. If there is no freedom of inflation, there is a numerical problem.

List of Classification Algorithms in Machine Learning 

It belongs to the class statsmodels.miscmodels.count.PoissonZiGMLE(endog, exog=None, offset=None, missing='none', **kwds)

For more related projects -

https://www.dezyre.com/projects/data-science-projects/deep-learning-projects
https://www.dezyre.com/projects/data-science-projects/neural-network-projects

Attributes:

endog_names
Names of endogenous variables.

exog_names
Names of exogenous variables.

Methods:

expandparams(params)
expand to full parameter array when some parameters are fixed

fit([start_params, method, maxiter, ...])
Fit method for likelihood based models

from_formula(formula, data[, subset, drop_cols])
Create a Model from a formula and dataframe.

hessian(params)
Hessian of log-likelihood evaluated at params

information(params)
Fisher information matrix of model.

predict(params[, exog])
After a model has been fit predict returns the fitted values.

predict_distribution(exog)
return frozen scipy.stats distribution with mu at estimated prediction

score(params)
Gradient of log-likelihood evaluated at params

What Users are saying..

profile image

Ed Godalle

Director Data Analytics at EY / EY Tech
linkedin profile url

I am the Director of Data Analytics with over 10+ years of IT experience. I have a background in SQL, Python, and Big Data working with Accenture, IBM, and Infosys. I am looking to enhance my skills... Read More

Relevant Projects

Build a Customer Churn Prediction Model using Decision Trees
Develop a customer churn prediction model using decision tree machine learning algorithms and data science on streaming service data.

Loan Eligibility Prediction Project using Machine learning on GCP
Loan Eligibility Prediction Project - Use SQL and Python to build a predictive model on GCP to determine whether an application requesting loan is eligible or not.

Build a Speech-Text Transcriptor with Nvidia Quartznet Model
In this Deep Learning Project, you will leverage transfer learning from Nvidia QuartzNet pre-trained models to develop a speech-to-text transcriptor.

Build an Image Classifier for Plant Species Identification
In this machine learning project, we will use binary leaf images and extracted features, including shape, margin, and texture to accurately identify plant species using different benchmark classification techniques.

Learn to Build an End-to-End Machine Learning Pipeline - Part 1
In this Machine Learning Project, you will learn how to build an end-to-end machine learning pipeline for predicting truck delays, addressing a major challenge in the logistics industry.

Personalized Medicine: Redefining Cancer Treatment
In this Personalized Medicine Machine Learning Project you will learn to classify genetic mutations on the basis of medical literature into 9 classes.

GCP MLOps Project to Deploy ARIMA Model using uWSGI Flask
Build an end-to-end MLOps Pipeline to deploy a Time Series ARIMA Model on GCP using uWSGI and Flask

MLOps using Azure Devops to Deploy a Classification Model
In this MLOps Azure project, you will learn how to deploy a classification machine learning model to predict the customer's license status on Azure through scalable CI/CD ML pipelines.

Build an optimal End-to-End MLOps Pipeline and Deploy on GCP
Learn how to build and deploy an end-to-end optimal MLOps Pipeline for Loan Eligibility Prediction Model in Python on GCP

Ecommerce product reviews - Pairwise ranking and sentiment analysis
This project analyzes a dataset containing ecommerce product reviews. The goal is to use machine learning models to perform sentiment analysis on product reviews and rank them based on relevance. Reviews play a key role in product recommendation systems.