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 |
What is PDV?
What are symget and symput? : sas-macro
How would you compile all macros from a folder in a study, within the autoexec program?
What is the pound sign used for the DATA _NULL_?
What would the following datastep do? Data _null_; Set Dist end=eof; Call Symput("xx"!!left(put(_n_,2.)),&dimension); If EOF then Call Symput('numrows',left(put(_n_,2.))); Run; dimension is a macro variable that is being passed here
for what purpose would you use the retain statement? : Sas programming
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.
How many tiers in sas architecture?
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?
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable?
Do you prefer Proc Report or Proc Tabulate? Why?
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.