LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (February 2007, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 1 Feb 2007 02:54:26 -0800
Reply-To:     sylvain.willart@GMAIL.COM
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         sylvain.willart@GMAIL.COM
Organization: http://groups.google.com
Subject:      Re: Proc Mianalyze
Comments: To: sas-l@uga.edu
In-Reply-To:  <1170312149.069909.103790@m58g2000cwm.googlegroups.com>
Content-Type: text/plain; charset="iso-8859-1"

On 1 fév, 07:42, "statfan" <malem...@gmail.com> wrote: > hello > > I am using proc mianalyze to combine my imputed data sets. I need to > read the output of mianalyze (paramater estimates) into a new data set > (bring the results in a new data set. then I can recall it and run > some relative bias results. > > thank you > > proc mianalyze data=results; by iter; > > modeleffects crct_est SAT_est intercept_est free_est size_est; > stderr crct_std SAT_std intercept_std free_std size_std;

if you run v8 or higher, you can use the ods (i think it's working with proc mianalyze though i m not sure)

ods output PARAMETERESTIMATES=ESTIMATES; proc mianalyze data=results; by iter; run ; ods output close ;

you will have all your results in a dataset named ESTIMATES

hope this helps sylvain


Back to: Top of message | Previous page | Main SAS-L page