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 2001, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 13 Feb 2001 19:28:31 -0500
Reply-To:     barrere Bendia <bendiabare@NETSCAPE.NET>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         barrere Bendia <bendiabare@NETSCAPE.NET>
Subject:      Delete data set?
Content-Type: text/plain; charset="us-ascii"

Hi all list. I made up a macro to create many samples ( for boostrap), but to prevent from charge my SAS-PC, I wante delete the previous data set. One example:

data nothing; set _NULL_;run;

data pred; set _NULL_;run;

%do J=1 to %samplNUM;

/* a program construct a dataset&J */

%do i=1 to %sample; proc logistic data=dataset&J model y = x1 x2 ; output out=data&i p=pred&i;

data pred; merge pred data&i ;run;

data data&i ; merge nothing data&i ;run; end; end;

What I wante is to store the data&i one by one and delete them one by one after.

Any hepl would be appreciated. Thanks a lot.

__________________________________________________________________ Get your own FREE, personal Netscape Webmail account today at http://webmail.netscape.com/


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