LIS Funding Generated 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 SPSS code is provided to illustrate the LIS Funding Generated data definition.
A_LIS_FG
2 The following SPSS code illustrates how to derive A_LIS_FG.
GET FIL ‘……..AIMS data set’.
MATCH FILE /FILE = * /TABLE = ‘……..FUNDING AIMS data set’ /BY L01 L03 A05.
/* Use tot_fund as an indicator that the aim has generated any funding, if it has generated £0.01 or more then a value of 1 is assigned to A_LIS_FG. RECODE TOT_FUND (0.01 THRU HI=1) (ELSE=0) INTO A_LIS_FG. |
L_LIS_FG
3 The following SPSS code illustrates how to derive L_LIS_FG.
GET FILE ‘……..LEARNER data set’
MATCH FILE /FILE = * /TABLE =‘……..FUNDING LEARNER data set’ /BY l01 l03.
|
Last Modified: 3 Jan 06