compute_fct_adjs {expstudy} | R Documentation |
Calculate adjustment factors for an underlying assumption
Description
There often are situations where an industry table is used for an assumed rate due to a company lacking sufficient credibility to write their own assumption. However, as experience becomes more available, a company would likely want to incorporate this experience into the industry assumption because it provides valuable insight into their own policyholders. A common industry approach is to apply "factor adjustments" developed using company experience to the industry assumption.
Usage
compute_fct_adjs(
.data,
expected_rate,
measure_sets = guess_measure_sets(.data),
amount_scalar = NULL,
method = c("simultaneous", "sequential"),
cred_wt_adjs = FALSE,
balance_adjs = FALSE,
na.rm = FALSE
)
Arguments
.data |
A |
expected_rate |
The underlying expected rate in the experience study for which factor adjustments are being generated for. |
measure_sets |
A (potentially named) list of measure sets. Only need to specify once if
chaining multiple |
amount_scalar |
A numeric vector to use when determining amount-weighted expecteds and variances. The function will determine whether or not the new expecteds/variances are amount-weighted if the corresponding actuals in the study have values greater than 1 (actuals that are not amount-weighted, i.e., counts, should only be 0 or 1). |
method |
String indicating the method of determining factor adjustments: * `simultaneous` will calculate factor adjustments for all combinations of group values in one iteration. * `sequential` will calculate factor adjustments for each grouping variable individually and applies that factor adjustment to the underlying expected rate before continuing with the next grouping variable's factor computation. |
cred_wt_adjs |
Logical indicating if factor adjustments should be credibility-weighted using partial credibility scores. |
balance_adjs |
Logical indicating if credibility-weighted adjustments should be scaled to
produce a 100% A/E ratio in aggregate (has no effect if
|
na.rm |
logical. Should missing values (including |
Details
This function piggy-backs off of measure_sets
defined in other expstudy
functions to quickly produce factor adjustments under a variety of methods.
Providing a dplyr::grouped_df()
will generate factors for each group
according to the method specified. If two or more grouping variables are
provided, an additional "composite" factor adjustment will also be generated
which is the product of each individual adjustment.
Value
A list of data frames that house factor adjustments for each measure set
provided in measure_sets
.
Examples
mortexp |>
dplyr::group_by(
GENDER,
SMOKING_STATUS
) |>
compute_fct_adjs(
EXPECTED_MORTALITY_RT,
amount_scalar = FACE_AMOUNT
)