Loads a CAS action set into the current session, making its actions available for execution. Action sets are groups of related tasks, such as 'simple' for descriptive statistics or 'dataStep' for running DATA step code in CAS. This is a fundamental step for preparing a CAS session for analysis.
| Parameter | Description |
|---|---|
| actionSet | Specifies the name of the action set to be loaded into the current session. This name is case-insensitive. |
This example loads the 'simple' action set, which contains basic data analysis and summarization actions like 'summary' and 'freq'.
| 1 | |
| 2 | PROC CAS; |
| 3 | ACTION BUILTINS.LOADACTIONSET / actionSet='simple'; |
| 4 | |
| 5 | RUN; |
| 6 |
This example loads the 'dataStep' action set. This is essential for running SAS DATA step code directly on the CAS server for high-performance, in-memory data manipulation.
| 1 | |
| 2 | PROC CAS; |
| 3 | ACTION BUILTINS.LOADACTIONSET / actionSet='dataStep'; |
| 4 | |
| 5 | RUN; |
| 6 | |
| 7 | QUIT; |
| 8 |