Page tools: Print Page Print All | ||||||||||||||||||||||
This document was added or updated on 02/10/2012. USING THE CURF
Each household has a unique twelve-digit random identifier, i.e. ABSHID. On the Family level, each family within the household is numbered sequentially. The item ABSFID containing this family number also appears on the income unit and person levels. The combination of household and family identifiers uniquely identifies the family. On the income unit level, each income unit within the family is numbered sequentially. This income unit number is also stored at the person level (as ABSIID). A combination of household, family and income unit identifiers uniquely identify an income unit. Records from the establishments component don't exist at the family and income unit levels. On the person level, each person has a unique number when the household identifier and the number of the person (ABSPID) within the household is combined. This information is also recorded on each lower level. The broad areas of activity level and the providers of assistance level also have an identifier (ABSAID) which, when combined with ABSHID and ABSPID, enables information to be copied between levels nine and ten. Identifiers can be used to copy information from one level of the file to another. The following SAS code can be used (or equivalent) to copy information from a lower level to a level above: PROC SORT DATA=RSTCTION ; BY ABSHID ABSPID ; RUN ; DATA SUMMARY (KEEP=ABSHID ABSPID MENTUND) ; SET RSTCTION ; BY ABSHID ABSPID ; RETAIN MENTUND ; IF FIRST.ABSPID THEN MENTUND=2 ; *Does not have learning or understanding difficulties or mental illness ; IF RESTRICT=7 OR RESTRICT=14 THEN MENTUND=1 ; * Has learning or understanding difficulties or mental illness ; IF LAST.ABSPID THEN OUTPUT ; RUN ; PROC SORT DATA = PERSON ; BY ABSHID ABSPID ; RUN ; DATA MERGFILE ; MERGE SUMMARY (IN=A) PERSON (IN=B) ; BY ABSHID ABSPID ; IF B AND NOT A THEN MENTUND=2 ; * Records which are not on the SUMMARY file ; RUN ; The SUMMARY file only keeps the last record for each person on the RSTCTION file so the merge is a one to one match of person records on the SUMMARY file with records on the PERSON file. Some PERSON records will have no matching records on the SUMMARY file (as the person has no restrictions). For these records the statement "If B and not A then MENTUND=2 ;" will allocate the code 2 because they don't have any restrictions. This method allows summary information from one level to be used on the level above it in the hierarchy. The item generated above can now be cross classified by any number of items on the person level file. The following SAS code (or equivalent) can be used to copy information from a higher level to a level below: PROC SORT DATA=RSTCTION ; BY ABSHID ABSPID ; RUN ; PROC SORT DATA = PERSON ; BY ABSHID ABSPID ; RUN ; DATA MERGFILE ; MERGE RSTCTION (IN=A) PERSON (KEEP=ABSHID ABSPID SEX AGE IN=B) ; BY ABSHID ABSPID ; IF A AND B THEN OUTPUT ; * Only keeps records which are present on both files ; RUN ; Unlike the previous merge, this merge will match one PERSON record to many RSTCTION records. The statement "If A and B then OUTPUT ;" ensures that only records present on both files are kept. If this statement was not used then PERSON records without a corresponding RSTCTION record would appear with a missing value for all RSTCTION data items. Note that the data items copied from the PERSON level will now have the counting unit for the level they have been added to, restrictions in this case.Collection component identifiers The person level contains two items indicating whether the data were collected in the household or cared accommodation component. These items are POPESTAB and DWELTYPE. The item DWELTYPE has the categories 'Private dwelling' and 'Special dwelling' for all households and 'Not applicable' for the cared accommodation component. The item POPESTAB has the category 'Living in an establishment' for the cared accommodation component and 'Not in this population' for the household component. These items can be copied from the person level to other levels of the file as required. ABOUT THE FILES BASIC CURF (on CD_ROM and accessible through RADL) The BASIC CURF distributed CD-ROM contains the following files: Data DAC03.CSV This file contains the raw confidentialised survey data in hierarchical comma delimited ASCII text format. SAS files These files contain the data for the CURF in SAS for Windows format. DAC03HH.SD2 contains the Household level data DAC03FAM.SD2 contains the Family level data DAC03IU.SD2 contains the Income Unit level data DAC03PER.SD2 contains the Person level data DAC03ALR.SD2 contains the All Recipients level data DAC03CON.SD2 contains the All Conditions level data DAC03RES.SD2 contains the Restrictions level data DAC03SPA.SD2 contains the Specific Activities level data DAC03BRA.SD2 contains the Broad Activities level data DAC03PAS.SD2 contains the Providers of Assistance level data SPSS files These files contain the data for the CURF in SPSS for Windows format. DAC03HH.SAV contains the Household level data DAC03FAM.SAV contains the Family level data DAC03IU.SAV contains the Income Unit level data DAC03PER.SAV contains the Person level data DAC03ALR.SAV contains the All Recipients level data DAC03CON.SAV contains the All Conditions level data DAC03RES.SAV contains the Restrictions level data DAC03SPA.SAV contains the Specific Activities level data DAC03BRA.SAV contains the Broad Activities level data DAC03PAS.SAV contains the Providers of Assistance level data STATA files These files contain the data for the CURF in STATA format. DAC03HH.DTA contains the Household level data DAC03FAM.DTA contains the Family level data DAC03IU.DTA contains the Income Unit level data DAC03PER.DTA contains the Person level data DAC03ALR.DTA contains the All Recipients level data DAC03CON.DTA contains the All Conditions level data DAC03RES.DTA contains the Restrictions level data DAC03SPA.DTA contains the Specific Activities level data DAC03BRA.DTA contains the Broad Activities level data DAC03PAS.DTA contains the Providers of Assistance level data Information files RESPONSIBLE ACCESS TO CURFs.PDF This is an acrobat file explaining the CURF users' role and obligations when using confidentialised data. DATA_ITEM_LISTING_DAC03.TXT This file contains documentation of the DAC03.CSV raw data including data item labels, code values and category labels. FORMATS.SC2 This file is a SAS library containing formats. FREQUENCIES_HH This file contains documentation of the Household level data. Data item code values and category labels are provided with weighted household frequencies of each value. This file is in plain text format. FREQUENCIES_FAM This file contains documentation of the Family level data. Data item code values and category labels are provided with weighted household frequencies of each value. This file is in plain text format. FREQUENCIES_IU This file contains documentation of the Income Unit level data. Data item code values and category labels are provided with weighted household frequencies of each value. This file is in plain text format. FREQUENCIES_PER This file contains documentation of the Person level data. Data item code values and category labels are provided with weighted person frequencies of each value. This file is in plain text format. FREQUENCIES_ALR This file contains documentation of the All Recipients level data. Data item code values and category labels are provided with weighted person frequencies of each value. This file is in plain text format. FREQUENCIES_CON This file contains documentation of the All Conditions level data. Data item code values and category labels are provided with weighted person frequencies of each value. This file is in plain text format. FREQUENCIES_RES This file contains documentation of the Restrictions level data. Data item code values and category labels are provided with weighted person frequencies of each value. This file is in plain text format. FREQUENCIES_SPA This file contains documentation of the Specific Activities level data. Data item code values and category labels are provided with weighted person frequencies of each value. This file is in plain text format. FREQUENCIES_BRA This file contains documentation of the Broad Activities level data. Data item code values and category labels are provided with weighted person frequencies of each value. This file is in plain text format. FREQUENCIES_PAS This file contains documentation of the Providers of Assistance level data. Data item code values and category labels are provided with weighted person frequencies of each value. This file is in plain text format. CURF_INFO_PAPER.PDF This is an acrobat file that contains the CURF Information Paper. SDAC03 Basic CURF on RADL Test files The test files mirror the actual data files, but have random data and random identifiers. These files are on the RADL website and can be downloaded so users can use these to trouble shoot their code prior to submitting RADL jobs. FORMATS.SC2 is a SAS library containing formats for the test files. DAC03HH.SD2 contains the test file of Household level data in SAS for Windows format DAC03FAM.SD2 contains the test file of Family level data in SAS for Windows format DAC03IU.SD2 contains the test file of Income Unit level data in SAS for Windows format DAC03PER.SD2 contains the test file of Person level data in SAS for Windows format DAC03ALR.SD2 contains the test file of All Recipients level data in SAS for Windows format DAC03CON.SD2 contains the test file of All Conditions level data in SAS for Windows format DAC03RES.SD2 contains the test file of Restrictions level data in SAS for Windows format DAC03SPA.SD2 contains the test file of Specific Activities level data in SAS for Windows format DAC03BRA.SD2 contains the test file of Broad Activities level data in SAS for Windows format DAC03PAS.SD2 contains the test file of Providers of Assistance level data in SAS for Windows format DAC03HH.SAV contains the test file of Household level data in SPSS format DAC03FAM.SAV contains the test file of Family level data in SPSS format DAC03IU.SAV contains the test file of Income Unit level data in SPSS format DAC03PER.SAV contains the test file of Person level data in SPSS format DAC03ALR.SAV contains the test file of All Recipients level data in SPSS format DAC03CON.SAV contains the test file of All Conditions level data in SPSS format DAC03RES.SAV contains the test file of Restrictions level data in SPSS format DAC03SPA.SAV contains the test file of Specific Activities level data in SPSS format DAC03BRA.SAV contains the test file of Broad Activities level data in SPSS format DAC03PAS.SAV contains the test file of Providers of Assistance level data in SPSS format For users of the CURF on CD ROM or RADL, other information available from the ABS web site includes:
Document Selection These documents will be presented in a new window.
|