how can you get the single data set from the library(which
has the number of data sets)?
Answers were Sorted based on User's Feedback
Answer / shivraj gangu
Using the Libname stetment and select statment..
| Is This Answer Correct ? | 24 Yes | 0 No |
Answer / k.padmaja
proc copy in=actuallib out=rqlib;
select datasetname;
run;
| Is This Answer Correct ? | 9 Yes | 1 No |
Why do we use QUIT commmand for proc datasets and proc sql ???
What are the functions which are used for character handling functions?
How to select the observations randomly from a SAS dataset
Have you ever linked SAS code, If so, describe the link and any required statements used to either process the code or the step itself?
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
What is difference between rename and lable in sas?
How can you limit the variables written to output dataset in data step?
How would you code a merge that will keep only the observations that have matches from both sets?
what is study design in while working with SAS? what are screening variables in SAS?
/*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
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
what is sas and what are the functions? : Sas-administrator