Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
From | Steve Samuels <sjsamuels@gmail.com> |
To | statalist@hsphsun2.harvard.edu |
Subject | Re: st: st: Stata coding to SAS |
Date | Wed, 16 Jan 2013 10:05:15 -0500 |
KC You will have a better chance of getting an answer to your question if, as the FAQ request, you show the results of all commands. Also note that the one "rule" on Statalist is to use full names. If you are professionally known as "KC Wong", then please give your affiliation. Steve Steven Samuels Consulting Statistician 18 Cantine's Island Saugerties, NY 12477 USA 845-246-0774 On 12 January 2013 KC Wong wrote: > I wish to translate the below Stata coding to SAS and I'm wondering if > I have the SAS coding right because the result from Stata differs from > SAS's. > I'm now using StataIC 11. > > Stata: > svyset _n, poststrata(poststrata) postweight(aweight) > svy, subpop(european): logistic case i.age_cat i.interviewmethod > i.status i.deprivation > > SAS: > proc surveylogistic data=bc; > strata poststrata; > weight aweight; > domain european; > class age_cat(ref="0") interviewmethod(ref="3") deprivation(ref="0") > / param=ref; > model case(event="1") = age_cat interviewmethod status deprivation; > run; * * For searches and help try: * http://www.stata.com/help.cgi?search * http://www.stata.com/support/faqs/resources/statalist-faq/ * http://www.ats.ucla.edu/stat/stata/