Tag: SAS Programming

Learn SAS
Rick Wicklin 2
Interactive procedures in SAS

SAS software supports two kinds of procedures: interactive and non-interactive. Most SAS procedures are non-interactive. They begin with a PROC statement, include one or more additional statements, and end with a RUN statement. When SAS encounters the RUN statement, the procedure executes all statements, then exits. On the other hand,

1 2 3 18