explain the main difference between the nodup and nodupkey options? : Sas-administrator
No Answer is Posted For this Question
Be the First to Post Answer
Mention few ways with which a “table lookup’ is done in sas programming.
How will you assign all the variables of an dataset into a macro variable separated by a space? For example if a dataset has variables A,B,C. Assign them to a macro variable X as X=A B C
i have a null dataset with 10 variables; i want to print only name of the varibales in log window and also output window.how can we do this one?
how to import XTP files into SAS datasets?
1 Answers Barclays, Institute For Plasma Research,
What are the applications primarily used by business analyst? : Sas-bi
Hi , which book should i refer to for preaparing SAS statistical Exam. Searched a lot on books but still did n't find relevant books
How do you add a number to a macro variable?
data jagan1.s; input bp$; cards; 100/90 120/89 112/87 run; in the above code how to convert character data values to numeric data values?
Describe a time when you were really stuck on a problem and how you solved it?
Name and describe three SAS functions that you have used, if any?
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
which stats created by proc means that are not created by proc summary or vice versa?