Skills for Life (SFL) LEITCH Literacy Data Definition 2008/2009

A_SFL_LEITCH_LIT, L_SFL_LEITCH_LIT

DATA DEFINITION

1. LEITCH Literacy Skills for Life at aim or learner level.

PURPOSE

2. To identify whether an aim or learner counts as participation towards the Leitch Literacy level 1 target.

RELEVANT COLLECTIONS

  • ILR (LR)
  • ILR (ER)
  • ILR (UFI)
  • ILR (ESF SR)
  • ILR (ASL)

SOURCE DATA

3. The following variables are used as source data for the calculation of Skills for Life LEITCH Literacy.

Field NameLabelDataset
A_ACTIVEA_ACTIVE Aim Active for the current academic yearAims Standard File
A_SFLTYA_SFLTY Skills For Life TypeAims Standard File
A_NOTIONA_NOTION Notional NVQ Level Analytical LAD
A_SFLA_SFL Counts Towards Skills For Life TargetAims Standard File
A_OPROVA_OPROV Aim other provisionAims Standard File

DERIVED VARIABLES AND DATASETS

4. The definition produces the following derived variable(s)

Field NameLabelDataset
A_SFL_LEITCH_LITA_SFL_LEITCH_LIT Leitch Skills for Life Literacy aimAims Standard File
L_SFL_LEITCH_LITL_SFL_LEITCH_LIT Leitch Skills For Life Literacy LearnerAims Standard File

VALUES

5. The table below outlines the categories for A_SFL_LEITCH_LIT and L_SFL_LEITCH_LIT.

ValueLabel
-1Not Applicable/Not Known*
0No
1Yes

*Applies to system missing values and where there are non-active aims. Only applicable at learner level.

DETAILED DEFINITION

6. An aim counts towards the LEITCH Literacy level 1 skills for life target where the aim is a literacy or language SFL type (A_SFLTY = 1 or 3), the LAD indicates that the Notional NVQ level is 1 (A_NOTION=1), it counts towards the Skills for Life target (A_SFL=1) and it is not other provision (A_OPROV=0).

7. If the learner has any aims that count towards the LEITCH Literacy target (A_SFL_LEITCH_LIT) then the learner is considered to be a LEITCH Literacy Skills for Life Learner (L_SFL_LEITCH_LIT = 1). Only aims active in the current academic year are included in the learner level calculation.


Skills for Life (SFL) LEITCH Literacy Sample Code

1. The following SPSS code is provided to illustrate the SFL LEITCH Literacy data definition.

A_SFL_LEITCH_LIT L_SFL_LEITCH_LIT

2. The following table shows the steps required to derive A_SFL_LEITCH_LIT, L_SFL_LEITCH_LIT

StepConditionAction/Action if trueAction if false
1N/ASet A_SFL_LEITCH_LIT 0N/A
2Does A_SFLTY = 1, or 3 And
A_NOTION = 1
And A_SFL = 1 And A_OPROV = 0
Set A_SFL_LEITCH_LIT to 1 go to 3Go to 3
3Does A_ACTIVE = 1Go to 4Set L_SFL_LEITCH_LIT to
-1
4Does the learner have any aims where A_SFL_LEITCH_LIT = 1Set L_SFL_LEITCH_LIT to 1Set L_SFL_LEITCH_LIT to 0

StepConditionAction/Action if trueAction if false
1Does A_SFL_LEITCH_LIT contain a valueNoneSet A_SFL_LEITCH_LIT = -1

StepConditionAction/Action if trueAction if false
1Does L_SFL_LEITCH_LIT contain a valueNoneSet L_SFL_LEITCH_LIT = -1

3. The following SPSS code illustrates how to derive A_SFL_LEITCH_LIT, L_SFL_LEITCH_LIT.

GET FILE = …………Aims Data set.

SORT CASES BY A09.
MATCH FILES
   /FILE = *
   /TABLE = …..Analytical LAD data set
   /BY A09.

*/The SFL LEITCH Literacy Flag is set to 1, where the learner is undertaking a SFL LEITCH Literacy aim.
COMPUTE A_SFL_LEITCH_LIT = 0.

If (Any(A_SFLTY,1,3) AND A_NOTION = 1 AND A_SFL =1 AND A_OPROV = 0) A_SFL_LEITCH_LIT = 1.

RECODE A_SFL_LEITCH_LIT (SYSMIS=-1)

VARIABLE LABELS A_SFL_LEITCH_LIT – ‘A_SFL_LEITCH_LIT Leitch Skills for Life Literacy Aim’.

VALUE LABELS A_SFL_LEITCH_LIT
-1 'Not Applicable/Not Known'
 0 'No’
 1 'Yes’.

SELECT IF A_ACTIVE=1.

SORT CASES L01 L03
AGGREGATE
  /OUTFILE = '.......L_SFL_LEITCH_LIT.SAV 
  /PRESORTED
  /BREAK = L01 L03
  /L_SFL_LEITCH_LIT = max(A_SFL_LEITCH_LIT).

GET FILE '.........Learner data set'.

SORT CASES L01 L03
MATCH FILE
/FILE= *
/TABLE='......L_SLF_LEITCH_LIT.SAV'
/BY L01 L03

RECODE L_SFL_LEITCH_LIT (SYSMIS=-1)


Date last modified: 12th January 2009