Compute "Adult Behavior Checklist [Parent] (DSM-5 Oriented Scale - ADHD): T-score"
Source:R/scores_mh_aseba.R
compute_mh_p_abcl__dsm__adhd_tscore.RdComputes the summary score mh_p_abcl__dsm__adhd_tscore
Adult Behavior Checklist [Parent] (DSM-5 Oriented Scale - ADHD):
T-score
Summarized variables:
mh_p_abcl__aggr__adhd_001mh_p_abcl__attn__adhd_001mh_p_abcl__attn__adhd_002mh_p_abcl__attn__adhd_003mh_p_abcl__attn__adhd_004mh_p_abcl__attn__adhd_005mh_p_abcl__attn__adhd_006mh_p_abcl__attn__adhd_007mh_p_abcl__othpr__adhd_001mh_p_abcl__othpr__adhd_002mh_p_abcl__othpr__adhd_003mh_p_abcl__othpr__adhd_004mh_p_abcl__rule__adhd_001
Excluded values:
777
999
Validation criterion: maximally 0 of 13 items missing
Usage
compute_mh_p_abcl__dsm__adhd_tscore(
data,
data_norm = NULL,
name = "mh_p_abcl__dsm__adhd_tscore",
col_age = "mh_p_abcl__cg2__age_001",
col_sex = "mh_p_abcl__cg2_sex",
max_na = 0,
exclude = c("777", "999"),
combine = TRUE
)Arguments
- data
tbl. Data frame containing the columns to be summarized.
- data_norm
tbl. Data frame containing the norm (T-score) values. see
ss_tscore().- name
character. Name of the summary score column.
- col_age
character, name of the age column. see
ss_tscore().- col_sex
character, name of the sex column. see
ss_tscore().- max_na
numeric, positive whole number. Number of missing items allowed.
NULLmeans no limit.- exclude
character vector. Values to be excluded from the summary score.
- combine
logical. If
TRUE(default), the summary score is is appended as a new column to the input data frame. IfFALSE, the summary score is returned as a separate one-column data frame.
Examples
if (FALSE) { # \dontrun{
compute_mh_p_abcl__dsm__adhd_tscore(data) |>
select(
any_of(c("mh_p_abcl__dsm__adhd_tscore", vars_mh_p_abcl__dsm__adhd))
)
} # }