Package org.conical.common.bbl.util
Class WtarScoreConverter
java.lang.Object
org.conical.common.bbl.util.WtarScoreConverter
Handles conversion of WTAR raw scores into standard scores and then FS IQ scores.
- Author:
- rdoherty
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic intgetFsIq(int standardScore) Converts a standard WTAR score to an FS IQ.static intgetFsIq(int rawScore, int age) Given the subject's age, converts a raw WTAR score to an FS IQ.static intgetReferenceGroup(int rawScore) Returns the WTAR reference group for the passed raw scorestatic intgetStandardScore(int rawScore, int age) Given the subject's age, converts a raw WTAR score to a standard score
-
Constructor Details
-
WtarScoreConverter
public WtarScoreConverter()
-
-
Method Details
-
getStandardScore
public static int getStandardScore(int rawScore, int age) Given the subject's age, converts a raw WTAR score to a standard score- Parameters:
rawScore- raw scoreage- age of subject- Returns:
- standard score
-
getReferenceGroup
public static int getReferenceGroup(int rawScore) Returns the WTAR reference group for the passed raw score- Parameters:
rawScore- raw score- Returns:
- reference group
-
getFsIq
public static int getFsIq(int rawScore, int age) Given the subject's age, converts a raw WTAR score to an FS IQ. This is equivalent togetFsIq(getStandardScore(rawScore, age)).- Parameters:
rawScore- raw scoreage- age of subject- Returns:
- FS IQ
-
getFsIq
public static int getFsIq(int standardScore) Converts a standard WTAR score to an FS IQ.- Parameters:
standardScore- standard score- Returns:
- FS IQ
-