|
This page last changed on 30.07.2014 by ttuv.
TROMSO_PERHE_SACOMP
Name: PERHE_SACOMP
Short description: Self-Assessed health status in comparison to individuals of similar age
Type: Integer
Description and values:
- 1=Worse than others
- 2=Almost similar to others
- 3=Better than others
- 9=Missing
Local variable explanation:
*HEALTH_COMPARED_O70_T4 : *How is your health now compared to others of your age (po70)?
| Values |
Categories |
|
| 1 |
Much worse |
|
|
| 2 |
A little worse |
|
|
| 3 |
About the same |
|
|
| 4 |
A little better |
|
|
| 5 |
Much better |
|
|
SAS code:
if HEALTH_COMPARED_O70_T4 IN (1 2) then PERHE_SACOMP=1;
else if HEALTH_COMPARED_O70_T4 EQ 3 then PERHE_SACOMP=2;
else if HEALTH_COMPARED_O70_T4 IN (4 5) then PERHE_SACOMP=3;
else PERHE_SACOMP=9;
SENECA_PERHE_SACOMP
Contact round 1:
PERHE_SACOMP is based on SENECA variable HEALTCOM (“Comparison health, self-perceived”)
Contact round 2:
PERHE_SACOMP is based on SENECA variable FHEALTCO (“Comparison health, self-perceived”)
Contact round 3:
PERHE_SACOMP is based on SENECA variable SHEALTCO (“Comparison health, self-perceived”)
|