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
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
|