Location of the Delivery Provider (Learner level) 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 Location of the Delivery Provider (Learner level) data definition.
L_DPLLSC, L_DPREG, L_DPLA, L_DPWAR01, L_DPWAR03, L_DPWARD
2 The following SPSS code illustrates how to match Location of the Delivery Provider fields on to the Learner data set.
GET FILE ‘………………..LEARNERS data set’. SORT CASES BY L_A23.
/* Rename the delivery providers postcode so that it matches the name of the postcode field in the postcode file. RENAME VARIABLES (L_A23=postcode). MATCH FILES /FILE=* /TABLE = ‘…………………………POSCTODE data set.sav’ /BY POSTCODE. RENAME VARIABLES (LLSC=L_DPLLSC) (LREG=L_DPREG) (LAUAcode=L_DPLA) (WARD_91=L_DPWARD) (WARD_01=L_DPWA01) (WARD_03=L_DPWA03) (POSTCODE=L_A23) (LSC_91=XLSC_91).
VARIABLE LABELS L_DPLLSC 'DV - LLSC of the Delivery Provider, based on the DP postcode/ L44 NCS delivery LSC number' /L_DPWARD 'DV - Local Authority ward code of the Delivery Provider (1991), based on the DP postcode' /L_DPWA01 'DV - Local Authority ward code of the Delivery Provider (2001), based on the DP postcode' /L_DPWA03 'DV - Local Authority ward code of the Delivery Provider (2003), based on the DP postcode' /L_DPREG 'DV - Region of the Delivery Provider, based on the DP postcode/ L44 NCS delivery LSC number'. /L_DPLA ‘DV - Local Authority based on the Learner DP postcode’. |
Last Modified: 29 Sep 06