How would you code the criteria to restrict the output to be
produced?
Answers were Sorted based on User's Feedback
use _null_ in data statemnet when u dont want to create
dataset.to restrict the output to be produced, close the
ods listing destination and this is default destination
and you can also restrict the output using no print option
in some procs such as means,sql,etc...
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / ganesh
In my view use noprint option to restrict the output to be
produce
data g;
input name$ no sal;
datalines;
a 1 2500
b 2 3500
;
proc print data=g noprint;
run;
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / akilan
In Jothi Sankar's answer,
First Choice is correct.
In second choice instead of 'OUT', have to use 'THEN OUTPUT'
Third choice is not correct one.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / linus
1.obs is one option.
2.in input statement we can restrict the variables we need.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sanjeev
proc sql;
select * from sashelp.class;
quit;
gives you an output.
proc sql noprint;
select * from sashelp.class;
quit;
no errors and output is restricted.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sumalatha.ch
_null_ this is not give any output.and nowid option.
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / jothi sankar
--> Using VAR can restrict which varibles have to be output
--> Using differnt data sets for each main condition
Eg:
DATA
MyData2
MyData3
MyData4
;
SET MyData1;
if Dept = 'Computer' OUT MyData2;
else if Dept = 'Electronic' OUT MyData3;
else if Dept = 'Chemical' OUT MyData4;
RUN;
--> Using PRINTEM for viewing datas individually
| Is This Answer Correct ? | 1 Yes | 6 No |
What is the difference between %local and %global? : sas-macro
What is the difference between order and group variable in proc report?
Suppose there is a SAS dataset with following values - Parent Child A B B C D E F G G H H I and so on….. This goes onto 1000s of observations/rows. Now how do we identify from this dataset Grandparents and Grandchildrens ?
5 Answers American Express, Barclays,
how are numeric and character missing values represented internally? : Sas programming
what is the use of proc sql?
How to sort in descending order?
Can you excute a macro within a macro? Describe.
how does sas handle missing values in an update? : Sas programming
I have 2 data sets A & B. Both have a variable called Age in them, each of them specifying a different functionality. In my program I use bot these data sets. How do I specify which Age variable I want to use?
What does a PROC TRANSPOSE do?
name several ways to achieve efficiency in your program? : Sas programming
what is proc Index? and what is proc document?