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 |
What other SAS features do you use for error trapping and data validation?
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
Of all your work, where have you been the most successful?
What is _n_?
Why do we use QUIT commmand for proc datasets and proc sql ???
how can you get the single data set from the library(which has the number of data sets)?
3 Answers Accenture, Deloitte,
what has been your most common programming mistake? : Sas programming
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
what is Enterprise Guide?what is the use of it?
wt is a-z and a--z?
Can we create datasets by proc step ? (Proc contents, Means)?
1.How to draw pivot tables in Excel by using SAS and in which version we can use VB script for to draw pivot tables in Excel? Answer with example data. 2.What are the advantages of _NULL_ in Data steps? Can we use _NULL_ in Proc steps also? 3. How to call the macro variable into Data Steps? 4. Can we draw pivot tables in Excel using Proc SQL? Please post answers for the above questions with suitable examples, and how to use VB script for Excel using SAS.