|
CHANCES : CR_SMO_STAT_DAILY
This page last changed on 19.03.2012 by ttuv.
TROMSO_SMO_STAT_DAILYVariable AGE_T4 : Age per 31.12.1994. Variable SMOKE_STOP_TIME_T4 : If you previously smoked daily, how long is it since you stopped (years)? Variable CIGARETTES_T4 : Do you smoke cigarettes daily?
Variable CIGAR_T4 : Do you smoke cigars/cigarillos daily?
Variable PIPE_T4 : Do you smoke a pipe daily?
SAS code: dif=AGE_T4 - SMOKE_STOP_TIME_T4; If SMOKE_STOP_TIME_T4 NE . and dif LE 0 then SMOKE_STOP_TIME_T4=.; If SMOKE_STOP_TIME_T4 NE . and dif IN (1 2 3 4 5) then SMOKE_STOP_TIME_T4=.;
If CIGARETTES_T4 EQ 1 or CIGAR_T4 EQ 1 or PIPE_T4 EQ 1 then SMO_STAT_DAILY=3; else if SMOKE_STOP_TIME_T4 NE . THEN SMO_STAT_DAILY=2; else if CIGARETTES_T4 EQ 0 or CIGAR_T4 EQ 0 or PIPE_T4 EQ 0 THEN SMO_STAT_DAILY=1; else SMO_STAT_DAILY=9; SHARE_SMO_STAT_DAILYSMO_STAT_DAILY is based on br001 and br002: BR001_EverSmokedDaily BR002_StillSmoking
SENECA_SMO_STAT_DAILYContact round 1: SMO_STAT_DAILY is based on SENECA variable SMOKING (“Smoking regularly?”) and SMOKENOW (“Smoking now?”) IF SMOKING=2 THEN SMO_STAT_DAILY=1; ELSE IF SMOKING=1 AND SMOKENOW=2 THEN SMO_STAT_DAILY=2; ELSE IF SMOKING=1 AND SMOKENOW=1 THEN SMO_STAT_DAILY=3; ELSE SMO_STAT_DAILY=.;
Contact round 2: SMO_STAT_DAILY is based on SENECA variable FSMOKING (“Smoking regularly?”) and FSMOKENO (“Smoking now?”) IF FSMOKING=2 THEN SMO_STAT_DAILY=1; ELSE IF FSMOKING=1 AND FSMOKENO=2 THEN SMO_STAT_DAILY=2; ELSE IF FSMOKING=1 AND FSMOKENO=1 THEN SMO_STAT_DAILY=3; ELSE SMO_STAT_DAILY=.;
Contact round 3: SMO_STAT_DAILY is not available for contact round 3. NSWEDEN_SMO_STAT_DAILYIF SM_STATUS=3 THEN SMO_STAT_DAILY=1; IF SM_STATUS=2 THEN SMO_STAT_DAILY=2; IF SM_STATUS=1 THEN SMO_STAT_DAILY=3; IF SM_STATUS=4 THEN SMO_STAT_DAILY=9; IF SM_STATUS=5 THEN SMO_STAT_DAILY=9; IF SM_STATUS=9999 THEN SMO_STAT_DAILY=9; IF SM_STATUS=8888 THEN SMO_STAT_DAILY=9; IF SM_STATUS=. THEN SMO_STAT_DAILY=9; IF SM_STATUS=6666 THEN SMO_STAT_DAILY=9; IF SM_STATUS=7777 THEN SMO_STAT_DAILY=9; SM_STATUS, see variable list MORGAM_SMO_STAT_DAILY
The relevant MORGAM data items are CIGS: "Do you smoke cigarettes now?" EVERCIG: "Did you ever smoke cigarettes regularly in the past?" CIGARSM "Have you ever smoked cigars/cigarillos?" PIPESM "Have you ever smoked a pipe?" Data on current daily cigar and pipe smoking are not available from all MORGAM cohorts, and their prevalence is always small compared to daily cigarette smoking. Data on former daily cigar or pipe smoking is not available at all. This conversion is based on cigarettes smoking, with the addition that if the person is known to to currently smoke pipe or cigar daily, he is considered as a current daily smoker. For details, see the MORGAM smoking data assessment. HAPIEE_SMO_STAT_DAILYBased on HAPIEE baseline variable l39 for current smoking: l39 "Do you smoke cigarettes?" 1 "Yes, regularly, at least 1 cigarette a day" Stata code gen smo_stat_daily=1 if l39==4 ESTHER_SMO_STAT_DAILYsmo_stat_daily = smostat; Source of smostat are the variables L40ZIG, L41RAU2 and L42ZIGNU from the participant's questionnaire. EPIC_SMO_STAT_DAILYThe variables SMO_CIGAR, SMO_CIG, SMO_PIPE, SMO_ST were used for the production of SMO_STAT_DAILY according to the following definition and rule. Var definition(s): SMO_CIG: current cigarettes or cigarillos smoking status (0=no, 1=yes, 9=missing) SMO_PIPE: current pipe smoking status (0=no, 1=yes, 9=missing) SMOKE_ST: Epic elderly variable showing smoking status (1=never, 2=former, 3=smoker, 4=unknown) Coding rule: Is equal to 1 if the person is neither smoking cigars (SMO_CIGAR=0) nor cigarettes or cigarillos(SMO_CIG=0) nor pipe (SMO_PIPE=0). Otherwise if the person was a former smoker (SMO_ST=2) then SMO_STAT_DAILY=2. Otherwise if the smoking staus is unknown (SMO_ST=4) then SMO_STAT_DAILY=9. Otherwise if the person is either smoking cigars (SMO_CIGAR=1) or cigarettes or cigarillos(SMO_CIG=1) or pipes (SMO_PIPE=1) then SMO_STAT_DIALY is equal to 3. Coding rule in STATA: -replace SMO_STAT_DAILY = 2 if SMO_ST==2 -replace SMO_STAT_DAILY = 9 if SMO_ST==4 -replace SMO_STAT_DAILY = 3 if SMO_CIGAR==1 | SMO_CIG==1 | SMO_PIPE==1 |
| Document generated by Confluence on 26.02.2015 17:37 |