0 votes
in Software Defined Networking by

How to label values and use it in PROC FREQ?

1 Answer

0 votes
by
Use PROC FORMAT to set up a format.

proc format;

value score 0 - 100=‘100-‘

101 - 200=‘101+’

other=‘others’

;

proc freq data=readin;

tables outdata;

format outdatascore. ;

run;
...