Hi All The problem: I am using SAS QLIM to generate an Ordered Probit analysis using the folowing code: proc qlim; class <variable names> ; Model DV = IVs / discrete ; Ouptut out = <output dataset name> marginal ; My DV is an ordinal variable with three levels, coded 0,1,2 where 0= Competely disagree; and 2= Completely agree. IVs are a mixture of binary, ordinal and interval variables. This code generates marginal estimates for each of the IVs for each of the DV levels 1 and 2, but not for 0. My question is: Is it possible to generate Marginal Estimates for all three levels of the DV (not just two)? I have seen comments online that I might need a macro to do this, but I have never used SAS macro before. Many thanks, Philip
... View more