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 is the basic syntax of a sas program?
what is sas data set?
name few built in sas transformation in DI studio ?
Can you continue to write code while the rest of the people on the floor where you work have a noisy party to which you were not invited?
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
Can we create datasets by proc step ? (Proc contents, Means)?
To what type of programms have you used scratch macros?
Have you been involved in editing the data or writing data queries?
1 Answers BioServe, Oracle, Sasken,
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
how do u identify a macro variable
What would be the value of month at the end of data step execution and how many observations would be there?