Date: Wed, 20 Feb 2008 11:30:22 -0500
Reply-To: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Subject: Re: empirical CDF
On Wed, 20 Feb 2008 08:17:02 -0800, yangguoning@GMAIL.COM wrote:
>Hi, there,
>
>Anybody please tell me how to generate the emprical cumulative
>distribution in SAS. Is it possible to do it together with BY var?
>BTW, can I do PROC within PROC. Thanks a lot.
>
>Best,
You will get good answers for CDF for sure...
PROC in PROCs are not possible also nested DATA-steps or nested PROCs with
DATA steps are impossible in SAS.
DATA step1;
statement1;
DATA step2;
statement2;
RUN;
RUN;
is the same as:
DATA step1;
statement1;
RUN;
DATA step2;
statement2;
RUN;
RUN;
Because also a new DATA or PROC statement ends the preceeding one, like
RUN; and the extra RUN; at the end does nothing.
Gerhard