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 would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data set to a second data set, and the non-matches of the right-most data set to a third data set.
How did you use the round function?give an example(don't say it will round to the nearest intger) eg1:round(84.55,.1) =84.6 eg2:round(92.64,.1)=92.6,How it is happening like this tell me the logic,that is how the round function works when we have deimal values?
what are system option ? give few examples ? what are dataset options and dataset statements ? if there is a keep option and keep statement ? which one is executed first ? Difference between a WHERE statement and IF statement ? what is the advantage of using WHERE statement option on the dataset ?
What is SAS? What are the functions does it performs?
Explain what Proc glm does?
where to use sas business intelligence? : Sas-bi
Describe what are the different levels of administrative users in sas? : sas-grid-administration
if you have 365 no of data set and each one having different variable from each other. how will you read by creating macros and create a single data set.
Mention how to limit decimal places for the variable using proc 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.
what is SAS ACCESS AND SAS CONNECT ? Give an example and data statements used.
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data set to a second data set, and the non-matches of the right-most data set to a third data set?