get_adequacy_score {capl}R Documentation

Compute an adequacy score.

Description

This function computes an adequacy score (adequacy_score) for responses to items 2, 4 and 6 of the CSAPPA (Children's Self-Perceptions of Adequacy in and Predilection for Physical Activity; Hay, 1992) Questionnaire as they appear in the CAPL-2 Questionnaire. This score is used to compute the motivation and confidence domain score (mc_score).

Usage

get_adequacy_score(csappa2 = NA, csappa4 = NA, csappa6 = NA)

Arguments

csappa2

A numeric (integer) vector representing a response to CSAPPA item 2 (valid values are integers between 1 and 4).

csappa4

A numeric (integer) vector representing a response to CSAPPA item 4 (valid values are integers between 1 and 4).

csappa6

A numeric (integer) vector representing a response to CSAPPA item 6 (valid values are integers between 1 and 4).

Details

Valid values (integers between 1 and 4) represent the following responses:

Other capl functions called by this function include: validate_scale().

Value

Returns a numeric vector with values between 1.8 and 7.5 (if valid) or NA (if not valid).

Examples

get_adequacy_score(
  csappa2 = c(1:3, 0),
  csappa4 = c(4, 2, 1, "3"),
  csappa6 = c(4, 4, 2, 2)
)

# [1] 4.9 4.8 4.9  NA


[Package capl version 1.42 Index]