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 |
what is the use of sas management console? : Sas-di
In a shcool there are 1000 students. After completion of every test in 6 subjects , each subject teacher submit the marks of every student at different times and loaded in the database commonly. How will you seperate the top two subject marks for each each studet using SAS?
Hi All.I am looking for Good Institute who could Provide the online SAS BI+DI Training along with software.Primarily in Delhi/NCR or in Hyderabad Please help with name and contact number of concerned person!! Thanks in Advance! :)
What is the difference between a PROC step and a DATA step?
i have multiple .csv files in a unix directory. every file is having variable names as header.even for empty file also. suppose take 3 files a.csv b.csv c.csv a.csv contains data as name;age,salary; raja;34;4000; ravi;33;5000; kumar;25;3000; b.csv contains data as name;age,salary; ajay;40;4500; and c.csv contains name;age,salary; (only headers) Now i want to import and append all these files in to a single dataset. i tried infile statement with *.csv to import all at a time. but i m not getting correct data. please help me . its urgent. thank you in advance
how can you improve the performance of a query, If it is excuting very slowly?
Tell e how how dealt with..
i have a null dataset with 10 variables; i want to print only name of the varibales in log window and also output window.how can we do this one?
What is the differnce between SDTM 3.1.2 to 3.1.1 version
data abc; input x y ; cards; 1 2 5 6 7 8 7 8 1 7 5 7 ; run; Proc Freq data=abc; tables x*y / chisq nopercent nocol norow PLCORR; RUN; If we run the code, we have Polychoric Correlation = 0.9054 in the last table. I want to extract this particular entry with the value. Means I will create one dataset in which this value will be stored/extracted. I need your help in coding this. Please help me out.
SAS System ?
Can you execute a macro within a macro? Describe. : sas-macro