Mention what is SAS data set?
No Answer is Posted For this Question
Be the First to Post Answer
Describe the ways in which you can create a macro variable?
i have a macro variable var1,var2. i want titles for the each macro variable separately? how it is possible?
What is the role of unrestrictive users? : sas-grid-administration
What are the ways to do a “table lookup” in sas?
Can you excute a macro within a macro? Describe.
what type of graphs we will create(for 2+years candidates)?
how do the in= variables improve the capability of a merge? : Sas programming
In this question, I rename the numeric variable phone to numphone and then try use phone=put(numphone,comma16.) to store the numeric value numphone as a string value in phone. But I get a warning tha numphone already exists and in the data sat phone doesnt exist and numphone is set to missing. Why? data names_and_more; input Name $20. Phone : comma16. Height & $10. Mixed & $8.; Name = tranwrd(Name,' ',' '); rename phone = numphone; phone = put(numphone,comma16.); datalines; Roger Cody 9,087,821,234 5ft. 10in. 50 1/8 Thomas Jefferson 3,158,488,484 6ft. 1in. 23 1/2 Marco Polo 8,001,234,567 5Ft. 6in. 40 Brian Watson 5,183,551,766 5ft. 10in 89 3/4 Michael DeMarco 4,452,322,233 6ft. 76 1/3 ;
what is sas metadata server? : Sas-di
What was the last computer book you purchased? Why?
What's the difference between VAR A1 - A4 and VAR A1 - A4?
/*i have the following dataset.*/ data score; input marks ; datalines; 10 20 30 40 50 60 70 80 90 100 ; run; Now i should get the result as sum of 1 to 5 i.e(10+20+30+40+50)=150 and 2 to 6 i.e(20+30+40+50+60)=200 and 3 to 7 i.e(30+40+50+60+70)=250 and so on. how to get it. thanks in advance