Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
How to label values and use it in PROC FREQ?
Home
Software Defined Networking
How to label values and use it in PROC FREQ?
0
votes
asked
Aug 22
in
Software Defined Networking
by
rajeshsharma
How to label values and use it in PROC FREQ?
proc
freq
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 22
by
rajeshsharma
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;
...