Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spedygiorgio/lifecontingencies
Financial and Actuarial Mathematics for Life Contingencies
https://github.com/spedygiorgio/lifecontingencies
actuarial cran financial life-contingencies life-insurance r
Last synced: 3 months ago
JSON representation
Financial and Actuarial Mathematics for Life Contingencies
- Host: GitHub
- URL: https://github.com/spedygiorgio/lifecontingencies
- Owner: spedygiorgio
- License: other
- Created: 2015-02-28T23:40:44.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-02-25T11:45:21.000Z (9 months ago)
- Last Synced: 2024-07-10T18:00:24.633Z (4 months ago)
- Topics: actuarial, cran, financial, life-contingencies, life-insurance, r
- Language: R
- Size: 29.3 MB
- Stars: 59
- Watchers: 15
- Forks: 29
- Open Issues: 9
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - spedygiorgio/lifecontingencies - Financial and Actuarial Mathematics for Life Contingencies (R)
README
---
output: github_document
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```# lifecontingencies
The goal of lifecontingencies is to perform demographics and actuarial mathematics stuff in R.
## Installation
You can install lifecontingencies from github with:
```{r gh-installation, eval = FALSE}
# install.packages("devtools")
devtools::install_github("spedygiorgio/lifecontingencies")
```## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
## basic example code
require(lifecontingencies)
##computing a term life insurance
data("soa08Act")
Axn(actuarialtable = soa08Act, x=40, n=25)
```