Mention some common errors that are usually committed in sas programming.
No Answer is Posted For this Question
Be the First to Post Answer
name the scheduler for scheduling job and explain the scheduler? : 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?
What does PROC print, and PROC contents do?
What is run-group processing?
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
what is hierarchy flattening? : Sas-di
name few built in sas transformation in DI studio ?
If you set a label in the data step and call a proc freq on the data, how do you display the data without the labels and just the variables.
how we can call macros with in data step?
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 is change analysis in sas di ? : Sas-di
how to shift the rows to cols? eg: i have like field1 field2 field3 10 20 20 this should be displayed as field1 10 field2 20 field3 30 (without the obs col) how do this?can i use transpose or tell me suitable way to do this?