What sas features do you use to check errors and data validation?
No Answer is Posted For this Question
Be the First to Post Answer
In the following DATA step, what is needed for ‘fraction’ to print to the log? data _null_; x=1/3; if x=.3333 then put ‘fraction’; run;
how to add distinctly var variable values ex.. Data a; input var; datalines; 0 1 2 3 -1 -2 -3 ; run; adding all +ve value in one varibale n do the same for -ve too
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
what does the run statement do? : Sas programming
What is the difference between nodupkey and nodup options?
my problem is to export my report to xsl.i can do that.but the problem is my report has 3 headings first heading should be printed with the merging of (1-5)cells and heading 2 should be of merge(2-4)cells?how to do this condition?
How to include or exclude specific variables in a data set?
What statement do you code to tell SAS that it is to write to an external file?
How do you connect the desktop application to metadata server? : sas-grid-administration
What is the general format of function in sas? : sas-grid-administration
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 would you code a macro statement to produce information on the SAS log? This statement can be coded anywhere.