in data set200 observation how to take 110,150,170 using sql procedure?
Answer Posted / pranoy
PROC SQL;
CREATE TABLE TEST AS SELECT
*,
MONOTONIC() AS COUNT
FROM TEST1
WHERE COUNT IN (110,150,170);
QUIT;
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
How to include or exclude specific variables in a data set?
Did you used proc test? when?
describe the interaction table in sas di? : Sas-di
what are the scrubbing procedures in sas? : Sas programming
where to use sas business intelligence? : Sas-bi
what is the use of sas management console? : Sas-di
Name few SAS functions?
Describe crosslist option in tables statement?
what are sas/access and sas/connect? : Sas programming
Explain the difference between using drop = data set option in set and data statement?
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
How is character variable converted into numeric variable and vice versa?
name some data transformation used in sas di? : Sas-di
describe about metadata object? : Sas-di
What is the purpose of trailing @ and @@? How do you use them?