source: MotivateDuringTherapy/src/main/java/tudelft/mentalhealth/motivatepersisting/PclTrend.java@ 7

Last change on this file since 7 was 5, checked in by Bart Vastenhouw, 5 years ago

Intermediate update

File size: 503 bytes
Line 
1package tudelft.mentalhealth.motivatepersisting;
2
3/**
4 * The trend seen in the PCL graphs, as described in section 2.1.2. PCL is a
5 * score reached on a PTSD symptom check list, see the paper. The procedure
6 * there amounts to eyeballing the data, there is no algorithm to determine this
7 * value from data but it would amount to some regression analysis of (a recent
8 * part of) PCL measurements.
9 *
10 * Order of items here should match table 2.
11 */
12public enum PclTrend {
13 DROPPING, STABLE, RISING;
14}
Note: See TracBrowser for help on using the repository browser.