Does SAS ‘Translate’ (compile) or does it ‘Interpret’? Explain.
Answers were Sorted based on User's Feedback
Answer / juan
complie. When you submit a DATA step for execution, SAS
checks the syntax of the SAS statements and compiles them,
that is, automatically translate the statements into
machine code.
| Is This Answer Correct ? | 32 Yes | 1 No |
Explain the special input delimiters used in sas programming.
how to do user inputs and command line arguments in sas?
Mention how to limit decimal places for the variable using proc means?
i am importing large data from oracle to work library. in log there is a error message worklibrary space is not enough. then how to import the data safely to sas environment.
What r all the reporting procedures...?
How to get second top scorer student from a class- table having different sections A, B, C & D? each section has same number of student.
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 download a flat file from Mainframe to your local PC using SAS?
What is difference between rename and lable in sas?
i have a null dataset with 20 variables. i want to upload the variables which contain name like a or k or anything in another dataset.how can we create the dataset?
What is SAS? is it a software just for use or we can creat something over there?
why is the use of Retrive statement and give me with example?