I am trying to build a a mutivariate regression based on variables identified as significant in bivariate analysis. I have already assessed for collinearity and dropped any collinear variables.
Most of the variables are binary, categorical vars. Distance and lat_transdegree are both continuous variables. There is some missing data within each variable (that I cannot do anything with, this is simply the nature of the survey input and dataset).
My code:
xi: logistic clin1yr education1 support6 sitting side lat_transdegree nocoronangulation winquist_s op_type interlock_dist cont_up work_status distance primary_reop //Attempt 1
logit clin1yr education1 support6 sitting side lat_transdegree nocoronangulation winquist_s op_type interlock_dist cont_up work_status distance primary_reop //Attempt 2
Alternatively:
This coding gives me an r(101) o.operator type error
local p_cov education1 support6 sitting side lat_transdegree nocoronangulation winquist_s op_type interlock_dist cont_up work_status distance primary_reop
xi: logit clin1yr `p_cov', asis vce(robust)
swaic, m b
Not really sure what to do. Please advise.
Most of the variables are binary, categorical vars. Distance and lat_transdegree are both continuous variables. There is some missing data within each variable (that I cannot do anything with, this is simply the nature of the survey input and dataset).
My code:
xi: logistic clin1yr education1 support6 sitting side lat_transdegree nocoronangulation winquist_s op_type interlock_dist cont_up work_status distance primary_reop //Attempt 1
logit clin1yr education1 support6 sitting side lat_transdegree nocoronangulation winquist_s op_type interlock_dist cont_up work_status distance primary_reop //Attempt 2
Alternatively:
This coding gives me an r(101) o.operator type error
local p_cov education1 support6 sitting side lat_transdegree nocoronangulation winquist_s op_type interlock_dist cont_up work_status distance primary_reop
xi: logit clin1yr `p_cov', asis vce(robust)
swaic, m b
Not really sure what to do. Please advise.
Comment