code the tables statement for a single level frequency?
Answers were Sorted based on User's Feedback
Answer / rajaanku11
proc freq data=lib.dataset;
table var; *here you can mention single variable of multiple
variables seperated by space to get single
frequency;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / aravind9882
proc freq data=lib.dataset;
table var;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
how can get the first and last observations in a dataset using Proc SQl?
What is a method to debug and test your SAS program?
What are types of transport files?
2 Answers PRA Health Sciences, Quintiles,
what are different type of sas servers ? On which server does the sas code execute ?
Name some categories in sas 9? : sas-grid-administration
what is factor analysis? : Sas-administrator
What is SAS? What are the functions does it performs?
Mention how to limit decimal places for the variable using proc means?
How would you combine 3 or more tables with different structures?
Describe crosslist option in tables statement?
What do you feel about hardcoding?
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?