How we can create SAS USER DEFINED CODE?
No Answer is Posted For this Question
Be the First to Post Answer
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;
How do you debug and test your SAS programs?
What is the size of PDV?
Describe how you would pass data to macro.
How are the analysis data sets structured?
how could you generate test data with no input data? : Sas programming
what are different analysis datasets you created and what are the new variables created
describe the interaction table in sas di? : Sas-di
i have a dataset with 100000 records. i want 100 records from that dataset and create a dataset.we need to pick the observations random order like 100obs,500obs,1020obs,1890obs,2565obs like that i need 100 obs in random order? how can we create this one?
I use NOCUM/NOPERCENT option in the tables statement like this Proc freq data = deepak; tables x y /nocum nopercent; run; Here I get nopercent and nocum in the output only for variables x and y. How do i do it for all variables? Deepak
I have a dataset concat having variable a b & c. How to rename a b to e & f?
If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to do?