Explore. Share. Code.

The starting point for your SAS® and Viya™ projects

Articles
Technical Articles

Discover technical articles from the community

Code SAS
SAS® Code

Snippets & Tutorials

FAQ
Q&A Base

FAQ & Help

Scenarios
Scenarios

Business Use Cases

CAS Actions
CAS Actions

Full Catalog & Examples

Data Step
Data Step

Preparation Scripts

Python
Python

SAS & Python Integration

Blog
Blog

News, tech watch and site updates

Join the community

Participate in the life of the site

Community by the numbers

0
Documented Actions
0
Code Examples
0
Articles Techniques
0
Scénarios Métiers
0
Solved Questions

Random FAQ

Which parameters are mandatory for the fmtLibCntlIn action?

The required parameters are 'fmtLibName', which specifies the format library name, and 'table', which specifies the settings for the input table.

See answer
On: fmtLibCntlIn
How can I name the predicted values, residuals, and credible limits in the output table?

You can use the `pred`, `resid`, `lcl` (lower credible limit), and `ucl` (upper credible limit) parameters to name the respective output statistics columns.

See answer
On: bartScore
STANDARD

use the standard memory format.

See answer
On: index
What is the 'table' sub-parameter under 'levels'?

Specifies the forecast input table for this level of the hierarchy. Alias: inputTable. The castable value can be one or more of the following: - caslib (string): Specifies the caslib for the input table. By default, the active caslib is used. - computedOnDemand (TRUE | FALSE, Default: FALSE): When set to True, creates the computed variables when the table is loaded instead of when the action begins. Alias: compOnDemand. - computedVars (casinvardesc): Specifies the names of the computed variables to create. Specify an expression for each variable in the computedVarsProgram parameter. Alias: compVars. - computedVarsProgram (string): Specifies an expression for each computed variable that you include in the computedVars parameter. Alias: compPgm. - dataSourceOptions (key-1=any-list-or-data-type-1): Specifies data source options. Aliases: options, dataSource. - groupByMode ("NOSORT" | "REDISTRIBUTE", Default: NOSORT): Specifies how to create groups. "NOSORT" groups data without sorting on each machine, then groups again on controller. "REDISTRIBUTE" transfers rows between nodes, guaranteeing ordering but is slower. - importOptions: Specifies the settings for reading a table from a data source. Alias: import. - name (table-name): Specifies the name of the input table. - singlePass (TRUE | FALSE, Default: FALSE): When set to True, does not create a transient table on the server. Can be efficient, but data might not have stable ordering upon repeated runs. - vars (casinvardesc): Specifies the variables to use in the action. - where (where-expression): Specifies an expression for subsetting the input data. - whereTable (groupbytable): Specifies an input table that contains rows to use as a WHERE filter.

See answer
On: globalReconcile
How is model selection performed in genmod Action?

Model selection is performed using the selection parameter, which accepts a selectionStatement structure. This includes options for method, candidates, choose, details, elasticNetOptions, fast, hierarchy, kappa, maxEffects, maxSteps, minEffects, orderSelect, plots, relaxed, select, slEntry, slStay, stop, and stopHorizon.

See answer
On: genmod