What is PoissonOffSetGMLE in the StatsModels library?

This recipe explains what is PoissonOffSetGMLE in the StatsModels library

Recipe Objective - What is PoissonOffSetGMLE in the StatsModels library?

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

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

Access YOLO OCR Character Recognition Project with Source Code 

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

Savvy Sahai

Data Science Intern, Capgemini
linkedin profile url

As a student looking to break into the field of data engineering and data science, one can get really confused as to which path to take. Very few ways to do it are Google, YouTube, etc. I was one of... Read More

Relevant Projects

Insurance Pricing Forecast Using XGBoost Regressor
In this project, we are going to talk about insurance forecast by using linear and xgboost regression techniques.

Loan Eligibility Prediction using Gradient Boosting Classifier
This data science in python project predicts if a loan should be given to an applicant or not. We predict if the customer is eligible for loan based on several factors like credit score and past history.

Mastering A/B Testing: A Practical Guide for Production
In this A/B Testing for Machine Learning Project, you will gain hands-on experience in conducting A/B tests, analyzing statistical significance, and understanding the challenges of building a solution for A/B testing in a production environment.

Build a Multi Class Image Classification Model Python using CNN
This project explains How to build a Sequential Model that can perform Multi Class Image Classification in Python using CNN

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

Build a Music Recommendation Algorithm using KKBox's Dataset
Music Recommendation Project using Machine Learning - Use the KKBox dataset to predict the chances of a user listening to a song again after their very first noticeable listening event.

Build Time Series Models for Gaussian Processes in Python
Time Series Project - A hands-on approach to Gaussian Processes for Time Series Modelling in Python

Learn Hyperparameter Tuning for Neural Networks with PyTorch
In this Deep Learning Project, you will learn how to optimally tune the hyperparameters (learning rate, epochs, dropout, early stopping) of a neural network model in PyTorch to improve model performance.

Build CI/CD Pipeline for Machine Learning Projects using Jenkins
In this project, you will learn how to create a CI/CD pipeline for a search engine application using Jenkins.

Deep Learning Project for Text Detection in Images using Python
CV2 Text Detection Code for Images using Python -Build a CRNN deep learning model to predict the single-line text in a given image.