What versions of SAS have you used (on which platforms)?
No Answer is Posted For this Question
Be the First to Post Answer
Name and describe few sas character functions that are used for data cleaning in brief.
what are the new features included in the new version of SAS i.e., SAS9.1.3?
5 Answers College School Exams Tests, Wockhardt,
How do you use the do loop if you don’t know how many times you should execute the do loop?
In sas, what are the areas that you are most interested in? : sas-grid-administration
firstobs and obs are working only option wise,but we are using infile statement with firstobs and obs in a statement wise? so firstobs,obs working at options and statemnts or not?
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
How you can read the variables that you need?
Write SAS codes to compare two datasets. Suppose the allowable difference is 0.1.
This entry was posted in General. Bookmark the permalink. Post a comment or leave
You need to create an In List that it is to be later used in a Where Clause that includes all the Regions that begin with the letter A from the sashelp.shoes table. Using PROC SQL with an into clause create the following string from the sashelp.shoes table using the variable region “AFRICA”,”ASIA”,…..
how many types prompting framework can be broken down to? : Sas-bi
PROC SQL always ends with QUIT statement.Why cant you use RUN in PROQ SQL ?