Hello,
As SAS learner,
I would like to know about OUTPUT statement theory and beginner to expert level example.
How do I get all questions on particular OUTPUT statement.
Thanks to all.
If data step code has no OUTPUT statement, then all observations in the data step are output to the data set.
If data step code has one or more OUTPUT statements, then only those observations where the OUTPUT statement is executed are included in the output data set.
A trivial example:
Data class;
set sashelp.class;
if weight>height then output;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.