https://github.com/kkondo1981/aglm
A handy tool for actuarial modeling, which is designed to achieve both accuracy and accountability.
https://github.com/kkondo1981/aglm
actuarial-modeling
Last synced: 3 months ago
JSON representation
A handy tool for actuarial modeling, which is designed to achieve both accuracy and accountability.
- Host: GitHub
- URL: https://github.com/kkondo1981/aglm
- Owner: kkondo1981
- License: gpl-2.0
- Created: 2018-12-31T04:57:38.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2025-05-11T15:58:23.000Z (5 months ago)
- Last Synced: 2025-07-19T23:34:13.157Z (3 months ago)
- Topics: actuarial-modeling
- Language: R
- Size: 312 KB
- Stars: 16
- Watchers: 3
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- jimsghstars - kkondo1981/aglm - A handy tool for actuarial modeling, which is designed to achieve both accuracy and accountability. (R)
README
# What is this?
Accurate Generalized Linear Model (AGLM) is defined as a regularized GLM which applying a sort of feature transformations using a discretization of numerical features and specific coding methodologies of dummy variables.
More details can be found in [our paper](https://www.institutdesactuaires.com/global/gene/link.php?doc_id=16273&fg=1).2021/6/6:
Now our paper won [Charles A. Hachemeister Prize](https://www.casact.org/about/awards-prizes-scholarships/charles-hachemeister-prize#:~:text=This\%20prize\%20was\%20established\%20in,between\%20the\%20CAS\%20and\%20ASTIN.).# Installation
```r
# The simplest way:
install.packages("aglm")# Or the development version from GitHub:
# install.packages("devtools")
devtools::install_github("kkondo1981/aglm", ref="develop")
```# Usage
See the help as below after installing `aglm`.```r
library(aglm)
?"aglm-package"
```