Standardized neuropsychological test scores
Source:R/std_npsych_scores-class.R
std_npsych_scores.RdAn S7 class representing the result of standardizing an npsych_scores
vector via std(), std_using_norms(), or std_using_regression().
Inherits from S7::class_double, so it behaves as a numeric vector while
carrying standardization metadata as S7 properties.
Arguments
- .data
A numeric vector of standardized (z-score) values.
- scores_subclass
A string naming the originating
npsych_scoressubclass (e.g.,"MOCATOTS"), orNULL.- description
A non-empty string summarizing the standardization applied, including the method, version, and covariates.
- method
A non-empty string indicating the standardization method (e.g.,
"norms","regression").- version
A string identifying the version used (e.g.,
"nacc","updated_2025.06"), orNULL.
Value
An S7 object of class std_npsych_scores, which behaves as a
numeric vector with additional properties: scores_subclass,
description, method, and version.
Properties
scores_subclass(
character(1)orNULL) The name of the originatingnpsych_scoressubclass (e.g.,"MOCATOTS").description(
character(1)) A human-readable summary of the standardization applied, including the method, version, and covariates.method(
character(1)) The standardization method used (e.g.,"norms","regression").version(
character(1)orNULL) The version identifier (e.g.,"nacc","updated_2025.06").