if we dont want to print output what we have to do..???give
syntax..???
Answers were Sorted based on User's Feedback
proc print data= dataset name noprint;
run;
| Is This Answer Correct ? | 12 Yes | 3 No |
Answer / chandu
OPTIONS NOPRINT;
Since the question was not specified the procedure. We can use the global SAS statement where we can specify the noprint option.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / paul
--Output in sas is only through a procedure, so OPTIONS
NOPRINT will disable the output universally, and might be
suitable for a batch run.
--It's advisible to use NOPRINT option with individual
procedures, such as
Proc sql noprint;
<sql >
quit; as it only supress the output for a particular proc.
--ODS listing close; can be used to disable output in
OUTPUT window of SAS session and redirect it to some
external file, if the o/p is not re-directed then we get a
warning in log as:
WARNING: No output destinations active.
--dm out 'clear'; is to clear the output window, it wont
suppress o/p while running a proc.
--The real intensio nof the question must be whether the
user know the technique to re-direct the o/p.
cheers!
-Paul
| Is This Answer Correct ? | 2 Yes | 0 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.
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
Can anyone help me about SAS Realtime scenarios in Clinical field
We want to merge file A and B. File A has variable age, file B provide birthdate. How to merge the data according to age in file B
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 the difference between class statement and by statement in proc means?
What are the difference between the sas data step and sas procs?
What was the last computer book you purchased? Why?
i have a null dataset with 20 variables. i want to upload the variables which contain name like a or k or anything in another dataset.how can we create the dataset?
sas implimented companies in hyderabad
what is intially documentation in sas?
How to import the Zip files into SAS? If it is possible in SAS? If it is posible write the code...