if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference btw proc means and proc univariate?
Explain data step in SAS
1.we can execute a macro with in a macro,by using call symput and symget can any one give me one example? 2.We can create the macro variables by using %let,%do,macro parameters,INTO clause in proc sql and call symput, can any one give me example to create macro variable with INTO clause and call symput? 3.
What is the purpose of using the N=PS option?
What is the length assigned to the target variable by the scan function?
What is the registered Key word is sas????
why only we use SAS? their r many programmin language like SPSS, Oracle... Why SAS?
what is the formula to measure Baseline
In which case u go for libname and in which case u go for proc sql pass thru facilit diff?
What is run-group processing?
What is the order of application for output data set options, input data set options and SAS statements?
data voter; input Age Party : $1. (Ques1-Ques4)($1. + 1); datalines; 23 D 1 1 2 2 45 R 5 5 4 1 67 D 2 4 3 3 39 R 4 4 4 4 19 D 2 1 2 1 75 D 3 3 2 3 57 R 4 3 4 4 ; Idont understand what the (Ques1-Ques4)($1. + 1) means. I have seen (Ques1-Ques4)(4*$1.), but what is (Ques1-Ques4)($1. + 1)? Appreciate all help Thanks