data_summarised | R Documentation |
This is a sample data set used for demonstration purposes.
data("data_summarised")
A data frame with 1278 rows of observations and 9 variables:
Character. The name of the insurance product associated with the observation. There are in total 4 types of products considered in the dataset:
"ACI"
: ;
"DB"
: ;
"SCI"
: ;
"Annuities"
: Note that this product contains a lot of missing values.
Numeric. The claim age x
associated with the observation, ranging between 18-100.
Numeric. The claim year t
associated with the observation, spanning years 2016-2020.
Numeric. The central exposure to risk, E_x^c
, associated with the observation.
Numeric. The number of claims ("deaths") associated with the observation.
Numeric. The expected number of claims associated with the observation.
Numeric. The crude mortality rate associated with the observation. It can be computed as \frac{\text{Claim}}{\text{Exposure}}
.
Numeric. The expected crude mortality rate associated with the observation. It can be computed as \frac{\text{ExpClaim}}{\text{Exposure}}
.
Numeric. The standard deviation of the crude mortality rate associated with the observation. It can be computed as \sqrt{\frac{\text{Qx} (1-\text{Qx})}{\text{Exposure}}}
.
data("data_summarised")
str(data_summarised)
head(data_summarised)
#extracting a subset of the data (3 products)
data_summarised[data_summarised$Product==c("ACI","DB","SCI"),]
#extracting a subset of the data (ages 35-65)
data_summarised[(data_summarised$Age>=35 & data_summarised$Age<=65),]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.