convert_format {LTFGRS} | R Documentation |
Attempts to convert the list entry input format to a long format
Description
Attempts to convert the list entry input format to a long format
Usage
convert_format(family, threshs, personal_id_col = "pid", role_col = NULL)
Arguments
family |
a tibble with two entries, family id and personal id. personal id should end in "_role", if a role column is not present. |
threshs |
thresholds, with a personal id (without role) as well as the lower and upper thresholds |
personal_id_col |
column name that holds the personal id |
role_col |
column name that holds the role |
Value
returns a format similar to prepare_thresholds
, which is used by estimate_liability
Examples
family <- data.frame(
fid = c(1, 1, 1, 1),
pid = c(1, 2, 3, 4),
role = c("o", "m", "f", "pgf")
)
threshs <- data.frame(
pid = c(1, 2, 3, 4),
lower = c(-Inf, -Inf, 0.8, 0.7),
upper = c(0.8, 0.8, 0.8, 0.7)
)
convert_format(family, threshs)
[Package LTFGRS version 1.0.0 Index]