Date: Fri, 15 Dec 2006 11:26:11 -0800
Reply-To: "Choate, Paul@DDS" <pchoate@DDS.CA.GOV>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Choate, Paul@DDS" <pchoate@DDS.CA.GOV>
Subject: Re: proc freq
In-Reply-To: <200612141903.kBEIochN000528@mailgw.cc.uga.edu>
Content-Type: text/plain; charset="us-ascii"
Ran - you can get them all in a single dataset like this:
data stuff;
array x(5);
array y(5) $1;
do j=1 to 30;
do i = 1 to 5;
x(i)=ceil(ranuni(123456)*5);
y(i)=byte(65+26*ranuni(123456));
end;
output;
end;
drop i j;
run;
proc summary missing;
class _all_;
ways 1;
output out=freqs(drop=_type_);
run;
hth
Paul Choate
DDS Data Extraction
(916) 654-2160
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Ran
S
Sent: Thursday, December 14, 2006 11:03 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: proc freq
Hi,
I am running proc freq on all the variables (more than 100 variables) so
I
am not using Tables statement as follows:
proc freq data=A;
run;
As I am not using Tables statement I don't know how to output data and
create temp dataset. Is there any way I can do this?
Thank you!
|