What are symbol tables?Differemce between Local N Global
Symbol tables.....
Answers were Sorted based on User's Feedback
Answer / chetan
Symbol table is save the Macro varibale list.
Local symobl table save the local macro varibale &
Global symbol table save the global macro varibale.
| Is This Answer Correct ? | 8 Yes | 3 No |
Macro variables are stored in symbol tables, which list the
macro variable name and its value. There is a global symbol
table, which stores all global macro variables. Local macro
variables are stored in a local symbol table that is
created at the beginning of the execution of a macro.
| Is This Answer Correct ? | 3 Yes | 3 No |
is data integration and etl programming is same? : Sas-di
What do you feel about hardcoding?
What is the Program Data Vector (PDV)? What are its functions?
what is null hypothesis? why do you consider that?
1 Answers Accenture, Quintiles,
Dear all, proc means data=dsn noprint completetypes; class trtmntgroup /preloadfmt; output out=tot n=n; format trtmntgroup trtf. ; by vstgrp descending severity; run; This is the code I used for AE table. I got the values without giving the variable ‘trtmntgroup(numeric)’ in var statement. And if I give the var statement for that variable i’m getting the same values.How is that possible? What is the difference between class and var statement? Could any one explain me how does proc means work at the back end. And what is the difference between _freq_ value and N value in proc means. Thanks and regards, Rajesh.
how do you validate tables abd reports?
2 Answers Accenture, Quintiles,
how to know the attributes of first five datasets in a library
What is the sas data set? : sas-grid-administration
How is character variable converted into numeric variable and vice versa?
Briefly describe 5 ways to do a "table lookup" in sas.
Mention what is the difference between nodupkey and nodup options?
Does SAS ?Translate? (compile) or does it ?Interpret?? Explain.