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

A_SFL_LEITCH_NUM, L_SFL_LEITCH_NUM

DATA DEFINITION

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

PURPOSE

2. To identify whether a Skills for Life aim counts as an achievement under the Leitch Numeracy 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 Numeracy.

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_NUMA_SFL_LEITCH_NUM Leitch Skills For Life Numeracy AimAims Standard File
L_SFL_LEITCH_NUML_SFL_LEITCH_NUM Leitch Skills For Life Numeracy LearnerAims Standard File

VALUES
5. The table below outlines the categories for A_SFL_LEITCH_NUM and L_SFL_LEITCH_NUM

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 Numeracy entry level skills for life target where the aim is a Numeracy SFL type (A_SFLTY = 2), the LAD indicates that the Notional NVQ level is Entry (A_NOTION=E), 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 Numeracy target (A_SFL_LEITCH_NUM) then the learner is considered to be a LEITCH Numeracy Skills for Life Learner (L_SFL_LEITCH_NUM = 1). Only aims active in the current academic year are included in the learner level calculation.


Skills for Life (SFL) LEITCH Numeracy Sample Code

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

A_SFL_LEITCH_NUM L_SFL_LEITCH_NUM

2. The following table shows the steps required to derive A_SFL_LEITCH_NUM L_SFL_LEITCH_NUM

StepConditionAction/Action if trueAction if false
1N/ASet A_SFL_LEITCH_NUM to 0N/A
2Does A_SFLTY = 2
And A_NOTION = “E” And
A_SFL = 1
And A_OPROV = 0
Set A_SFL_LEITCH_NUM to 1
Go to 3
Go to 3
3Does L_ACTIVE = 1Go to 4Set L_SFL_LEITCH_NUM to -1
4Does the learner have any aims where A_SFL_LEITCH_NUM = 1Set L_SFL_LEITCH_NUM to 1Set L_SFL_LEITCH_NUM to 0

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

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

3. The following SPSS code illustrates how to derive A_SFL_LEITCH_NUM, L_SFL_LEITCH_NUM.

GET FILE = …………Aims Data set.

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

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

If (A_SFLTY = 2 AND A_NOTION = ‘E’ AND A_SFL =1 AND A_OPROV = 0) A_SFL_LEITCH_NUM = 1.

RECODE A_SFL_LEITCH_NUM(SYSMIS -1).

VARIABLE LABELS A_SFL_LEITCH_NUM – ‘A_SFL_LEITCH_NUM Leitch Skills For Life Numeracy Aim’.

VALUE LABELS A_SFL_LEITCH_NUM
 -1 'Not Applicable/Not Known'
  0 'No’
  1 'yes’.

SELECT IF A_ACTIVE=1.
AGGREGATE
  /OUTFILE = '......L_SFL_LEITCH_NUM.SAV'
  /PRESORTED
  /BREAK = L01 L03
  /L_SFL_LEITCH_NUM = max(A_SFL_LEITCH_NUM).

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

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

RECODE L_SFL_LEITCH_NUM(SYSMIS=-1)


Date last modified: 12th January 2009