Disadvantaged Learner Sample Code
Note: This page is from an older version of the Data Dictionary and may therefore contain information that is now out of date. It is included here for reference only.
1 The following pseudo code and SPSS code is provided to illustrate the Disadvantaged Learner data definition.
L_DISADV
2 The following table shows the steps required to derive L_DISADV.
Step | Condition | Action if true | Action if false |
1 | Is L32<>99 | Set L_DISADV to 1 | Set L_DISADV to 0 |
3 The following SPSS code illustrates how to derive L_DISADV.
GET FILE=’………….LEARNER dataset COMPUTE ‘L_DISADV=0. IF (L32<>99) L_DISADV=1. |
Last Modified: 21 Dec 05