File: README.md

package info (click to toggle)
golang-github-kshedden-statmodel 0.0~git20210519.ee97d3e-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 892 kB
  • sloc: makefile: 3
file content (37 lines) | stat: -rw-r--r-- 946 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
__glm__ estimates [generalized linear models](https://en.wikipedia.org/wiki/Generalized_linear_model) (GLMs) in Go.

See the [examples](http://github.com/kshedden/statmodel/tree/master/glm/examples)
directory for examples.  This package can be used to produce results such as
[this](http://github.com/kshedden/statmodel/tree/master/glm/examples/nhanes/nhanes.md).

Supported features
------------------

* Estimation via IRLS and [gonum](http://github.com/gonum) optimizers

* Supports many GLM families, links and variance functions

* Supports estimation for case-weighted datasets

* Regularized (ridge/LASSO/elastic net) estimation

* Offsets

* Unit tests covering all families with their default links and
  variance functions, and some of the more common non-canonical links


Missing features
----------------

* Performance assessments

* Model diagnostics

* Marginalization

* Missing data handling

* GEE

* Inference for survey data