Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dswah committed Sep 20, 2018
1 parent 5a1479c commit c342664
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pygam/pygam.py
Original file line number Diff line number Diff line change
Expand Up @@ -2799,10 +2799,10 @@ class GammaGAM(GAM):
be positive. The log link guarantees this.
If you need to use the inverse link function, simply construct a custom GAM:
```
from pygam import GAM
gam = GAM(distribution='gamma', link='inverse')
```
>>> from pygam import GAM
>>> gam = GAM(distribution='gamma', link='inverse')
Parameters
----------
Expand Down Expand Up @@ -2907,10 +2907,10 @@ class InvGaussGAM(GAM):
be positive. The log link guarantees this.
If you need to use the inverse squared link function, simply construct a custom GAM:
```
from pygam import GAM
gam = GAM(distribution='inv_gauss', link='inv_squared')
```
>>> from pygam import GAM
>>> gam = GAM(distribution='inv_gauss', link='inv_squared')
Parameters
----------
Expand Down

0 comments on commit c342664

Please sign in to comment.