Provision Mix Matrix Summary Data Definition 2008/2009

A_FE_PROVMIX_MATRIX_SUMM

DEFINITION

1. Higher Level Provision Mix Matrix Category. Replaces the Provision Mix as from 2007/08.

PURPOSE

2. The aim of this variable is to support the Planning Cycle, the LSC has established a Corporate Language of mix of provision.

3. Assigns the value for the High level Provision Mix Category (A_FE_PROVMIX_SUMM) to each aim that is in the aims standard files.

CURRENT COLLECTIONS

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

SOURCE DATA

4. The following variables are used as source data for the calculation of High Level Provision Mix category.

Field NameLabelDataset
A_FE_PROVMIX
_SUMM
A_FE_PROVMIX_SUMM Provision Mix MatrixILR Learning Aims Dataset

DERIVED VARIABLES AND DATASETS

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

Field NameLabelDataset
A_FE_PROVMIX_
MATRIX_SUMM
A_FE_PROVMIX_MATRIX_SUMM FE Provision Mix Matrix SummaryAims Standard File

VALUES

6. The table below outlines the categories for A_FE_PROVMIX_MATRIX_SUMM

A_FE_PROVMIX_
MATRIX_SUMM Value
Label
1Category 1 - Foundation Learning Tier (level 1 and entry - excluding level 1 and entry Skills for Life)
2Category 2 - Skills for Life outside of section 96/97
3.1Category 3a - Skills for Life within section 96/97
3.2Category 3b - aims that directly contribute to full level 2 target
3.3Category 3c - aims that directly contribute to full level 3 target
4.2Category 4a - level 2 aims that do not contribute to full level 2 target
4.3Category 4b - level 3 aims that do not contribute to full level 3 target
5Category 5 - level 4 aims
6Category 6 - level not classified

 


PROVISION MIX MATRIX SUMMARY SAMPLE CODE

1. The following SPSS code is provided to illustrate the High level Provision Mix Matrix Summary data definition.

A_FE_PROVMIX_MATRIX_SUMM

2. The following table shows the steps required to derive A_FE_PROVMIX_MATRIX_SUMM

StepConditionAction/Action if trueAction if false
1AnySet
A_FE_PROVMIX_
MATRIX_SUMM
to 0
Go to 2
2DOES A_FE_PROVMIX_MATRIX = (1,2,11 or 12)Set A_FE_PROVMIX
_MATRIX_SUMM to 1
Go to 3
3DOES A_FE_PROVMIX_MATRIX = (112,122 or 132)Set A_FE_PROVMIX
_MATRIX_SUMM to 2
Go to 4
4DOES A_FE_PROVMIX_MATRIX = (111, 110, 121, 120, 130 or 131)Set A_FE_PROVMIX
_MATRIX_SUMM to 3.1
Go to 5
5DOES A_FE_PROVMIX_MATRIX = (25 or 26)Set A_FE_PROVMIX
_MATRIX_SUMM to 3.2
Go to 6
6DOES A_FE_PROVMIX_MATRIX = (35,36 or 39) Set A_FE_PROVMIX
_MATRIX_SUMM to 3.3
Go to 7
7DOES A_FE_PROVMIX_MATRIX = (21 or 22)Set A_FE_PROVMIX
_MATRIX_SUMM to 4.2
Go to 8
8DOES A_FE_PROVMIX_MATRIX = (31or 32)Set A_FE_PROVMIX
_MATRIX_SUMM to 4.3
Go to 9
9DOES A_FE_PROVMIX_MATRIX = (41 or 42)Set A_FE_PROVMIX
_MATRIX_SUMM to 5
Go to 10
10DOES A_FE_PROVMIX_MATRIX = (70 or 999)Set A_FE_PROVMIX
_MATRIX_SUMM to 6
Set A_FE_PROVMIX_
MATRIX_SUMM to 0.

StepConditionAction/Action if trueAction if false
1Does A_FE_PROVMIX_
MATRIX_SUMM contain a value
NoneSet A_FE_PROVMIX_
MATRIX_SUMM = -1

3. The following SPSS code illustrates how to derive A_FE_PROVMIX_MATRIX_SUMM.


**********************************************************************.
**Define high level version of provision mix matrix used in autumn performance review**.
**********************************************************************.
COMPUTE A_FE_PROVMIX_MATRIX_SUMM=0.
DO IF ANY(A_FE_PROVMIX_MATRIX,1,2,11,12).
+COMPUTE A_FE_PROVMIX_MATRIX_SUMM=1.
ELSE IF ANY(A_FE_PROVMIX_MATRIX,112,122,132).
+COMPUTE A_FE_PROVMIX_MATRIX_SUMM=2.
ELSE IF ANY(A_FE_PROVMIX_MATRIX,111,110,121,120,131,130).
+COMPUTE A_FE_PROVMIX_MATRIX_SUMM=3.1.
ELSE IF ANY(A_FE_PROVMIX_MATRIX,25,26).
+COMPUTE A_FE_PROVMIX_MATRIX_SUMM=3.2.
ELSE IF ANY(A_FE_PROVMIX_MATRIX,35,36,39).
+COMPUTE A_FE_PROVMIX_MATRIX_SUMM=3.3.
ELSE IF ANY(A_FE_PROVMIX_MATRIX,21,22).
+COMPUTE A_FE_PROVMIX_MATRIX_SUMM=4.2.
ELSE IF ANY(A_FE_PROVMIX_MATRIX,31,32).
+COMPUTE A_FE_PROVMIX_MATRIX_SUMM=4.3.
ELSE IF ANY(A_FE_PROVMIX_MATRIX,41,42).
+COMPUTE A_FE_PROVMIX_MATRIX_SUMM=5.
ELSE IF ANY(A_FE_PROVMIX_MATRIX,70,998,999).
+COMPUTE A_FE_PROVMIX_MATRIX_SUMM=6.
END IF.

A_FE_PROVMIX_MATRIX_SUMM
RECODE (SYSMIS=-1)

VARIABLE LABELS A_FE_PROVMIX_MATRIX_SUMM 'FE Provision
Mix Matrix Summary'.
VALUE LABELS A_FE_PROVMIX_MATRIX_SUMM
1 'Foundation Learning Tier'
2 'Skills For Life - Non Accredited'
3.1 'Skills For Life - Target'
3.2 'Level 2 - Directly contributes to full level 2 threshold'
3.3 'Level 3 - Directly contributes to full level 3 threshold'
4.2 'Level 2 - Does not directly contribute to full level 2 threshold'
4.3 'Level 3 - Does not directly contribute to full level 3 threshold'
5 'Level 4'
6 'Level not classified'.



Date last modfied: 15th January 2009