get_camsa_score {capl}R Documentation

Select the maximum CAMSA skill + time score.

Description

This function selects the maximum CAMSA (Canadian Agility and Movement Skill Assessment) skill + time score for two trials (camsa_score) and then divides by 2.8 so that the score is out of 10. This score is used to compute the physical literacy score (pc_score).

Usage

get_camsa_score(camsa_skill_time_score1 = NA, camsa_skill_time_score2 = NA)

Arguments

camsa_skill_time_score1

A numeric (integer) vector representing the skill + time score from trial 1 (valid values are between 1 and 28).

camsa_skill_time_score2

A numeric (integer) vector representing the skill + time score from trial 2 (valid values are between 1 and 28).

Details

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

Value

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

Examples

get_camsa_score(
  camsa_skill_time_score1 = c(1, 5, 10, 28, 29), 
  camsa_skill_time_score2 = c(5, 7, 12, NA, 27)
)

# [1]  5  7 12 NA NA


[Package capl version 1.42 Index]