Name the option to produce a frequency line items rather
that a table.
Answers were Sorted based on User's Feedback
Answer / sreekanth rao
use the list option in table statement.it will not print
the table, it will print only line items.
LIST
displays two-way to n-way tables in a list format rather
than as crosstabulation tables
proc freq data= SampleData;
tables XX*YY/ list;
please provide the comments
| Is This Answer Correct ? | 18 Yes | 0 No |
Explain the message 'Merge has one or more datasets with repeats of by variables'.
Describe how you would pass data to macro.
How do you write a test plan?
For what purpose would you use the RETAIN statement?
what kind of variables are collected in AE dataset?
3 Answers Accenture, Quintiles, SAS,
Baseline definition in your study
3 Answers Accenture, Quintiles,
Are the preferred term counts are always equal to Body system counts? If so, Why are they equal if not why they are not equal?
how can you create zero observation dataset? : Sas programming
i want to upload titles and footnotes to excel file?how it is possible?
Explain the purpose of substr functions in sas programming.
What are the efficacy variables in your study?
2 Answers Accenture, Quintiles,
In the following DATA step, what is needed for ‘fraction’ to print to the log? data _null_; x=1/3; if x=.3333 then put ‘fraction’; run;