If you have a data set that contains 100 variables, but you
need only five of those, what is the code to force SAS to
use only those variable?
Answer
Is This Answer Correct ? | 9 Yes | 0 No |
1.How many ways are there to create variables?
2.What is CLM,how can we use it?
3.what are the advontages of data step?
4.what is the extension of editor window in SAS 9.1.3?
5.How do you copy a particular data set from one library to
another?
6.what is the use of double option?
7.Advontages of Proc Report?
8.what is the basic use of where statement?
9.How do you terminate the statments in SAS Programming?
10.What is the difference between symput and symget?
11.How would a identify the local and global variable?
can any one answer for the 4'th question
Answer
Is This Answer Correct ? | 1 Yes | 0 No |
describe about joins? briefly?
Answer
Is This Answer Correct ? | 3 Yes | 1 No |
Question { 7117 }
How the date 04oct1994 is stored in SAS,not only give the
answer explain in brief?
Answer
Is This Answer Correct ? | 0 Yes | 15 No |
Question { 19583 }
Approximately what date is represented by SAS date value of
730
Answer
Is This Answer Correct ? | 7 Yes | 4 No |
Can you calculate the mean, median and mode of the following data set
using data step logic? Don't use any function or procedure.
data a;
input age @@;
datalines;
22 32 32 32 43 23 24 56 45 54 28 29 27 26 25 28 30 20 18 37 36 47 46
56 19 20
;
run;
I have calculated the mean which i have posted in the answer section.
Answer
Is This Answer Correct ? | 0 Yes | 6 No |
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.
Answer
Is This Answer Correct ? | 2 Yes | 4 No |