Confidence intervals for negative Binomial model
Continuing with the previously fitted crab model you will compare the confidence intervals for the negative Binomial model with the Poisson regression model.
The Poisson regression model crab_pois and the negative Binomial model crab_NB, and crab dataset are preloaded in the workspace.
Bu egzersiz
Generalized Linear Models in Python
kursunun bir parçasıdırEgzersiz talimatları
- Compute and print confidence intervals for the
crab_poismodel. - Compute and print confidence intervals for the
crab_NBmodel.
Uygulamalı interaktif egzersiz
Bu örnek kodu tamamlayarak bu egzersizi bitirin.
# Compute confidence intervals for crab_Pois model
print('Confidence intervals for the Poisson model')
____(____.____)
# Compute confidence intervals for crab_NB model
print('Confidence intervals for the Negative Binomial model')
____(____.____)