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 |
what are some good sas programming practices for processing very large data sets? : Sas programming
How many missing values are available? When might you use them?
What is the command used to find missing values?
If reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record?
what is SAS OPTIMIZATION?
I have 50 variables in one data set, In reports i want to generate every 10 variables in one page how we will write code in proc report.
What are the features of SAS?
data study; input Subj : $3. Group : $1. Dose : $4. Weight : $8. Subgroup; x= input(Weight,5.1); datalines; 001 A Low 220 2 002 A High 90 1 003 B Low 193.6 1 004 B High 165 2 005 A Low 123.4 1 ; Why does X get truncated? X shows up as 22 instead of 220,9 instead of 90 and 19.8 instead of 198? This problem doesnt happen with the values 193.6 and 123.4. This does not happen if x is read on the 5. informat instead of the 5.1 informat
What is the difference between nodupkey and nodup options?
What is the length assigned to the target variable by the scan function?
Do you need to rearrange the order of the data for the report?
How to display duplicate observations in data?