What are the uses of sas?
No Answer is Posted For this Question
Be the First to Post Answer
How would you include common or reuse code to be processed along with your statements?
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;
what is option year cuttoff in sas
1 new york 7,262,700 2 los angeles 3,259,340 3 philadelphia 1,642,900 how to read the above data using input statement consider the above data is in txt format externally u have to use infile and input statement.
What is difference between rename and lable in sas?
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
in which companies SAS openings are there? List of companies using SAS technology.
/*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
explain the difference between proc means and proc summary?
. Which date advances a date, time or date/time value by a given interval?
How you can read the variables that you need?
What is proc sql pass through facility?