|
You can use PROC FREQ, though versions prior to 6.11 or 6.12 will truncate
string distinction testing at 16 bytes. FREQ is also limited to a maximum
of 32,767 distinct values of a variable (2**15 - 1).
You could use SQL, which avoids both these limitations:
proc sql;
select count distinct( stringvar ) as count
from mydata;
quit;
On Saturday, October 18, 1997 2:56 PM, hmohideen
[SMTP:hmohideen@worldnet.att.net] wrote:
> Hi,
>
> Is there a way to get frequencies of a string variable in SAS.
> Will appreciate any response or if anyone could send a sample
> program it will be helpful. Thanks
>
> Habeeb
> hmohideen@worldnet.att.net
Karsten M. Self (kmself@ix.netcom.com)
What part of "gestalt" don't you understand?
|