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

model.weights.computedVarsProgram

Specifies an expression for each computed variable that you include in the computedVars parameter. Alias: compPgm.

See answer
On: IdentifySpeakers
casOut

specifies the CAS table to store the analysis results. caslib : specifies the name of the caslib for the output table. indexVars : specifies the list of variables to create indexes for in the output data. lifetime : specifies the number of seconds to keep the table in memory after it is last accessed. The table is dropped if it is not accessed for the specified number of seconds. Default: 0 Minimum value: 0 memoryFormat : specifies the memory format for the output table. Default: INHERIT DVR : use the duplicate value reduction memory format. This memory format can reduce the memory consumption and file size when the input data contains duplicate values. INHERIT : use the default memory format that is set for the server. By default, the server uses the standard memory format. If an administrator sets the CAS_DEFAULT_MEMORY_FORMAT environment variable to DVR, then the DVR memory format is set as the default for the server. STANDARD : use the standard memory format. name : specifies the name for the output table. promote : when set to True, adds the output table with a global scope. This enables other sessions to access the table, subject to access controls. The target caslib must also have a global scope. Default: FALSE replace : when set to True, overwrites an existing table that has the same name. Default: FALSE tableRedistUpPolicy : Specifies the Table Redistribution Policy when the number of worker pods increases on a running CAS server. DEFER : Defer redistribution policy selection to higher-level entity. NOREDIST : Do not redistribute table data when the number of worker pods changes on a running CAS server. REBALANCE : Rebalance table data when the number of worker pods changes on a running CAS server.

See answer
On: generateShadowFeatures
Which parameter is required to specify the copula simulation input table?

The `copulaSample` parameter is required. It specifies the name of the input table that contains the copula simulation in uniform margins.

See answer
On: ecm
What does the 'maxPosition' parameter do?

The 'maxPosition' parameter specifies that the output table contains records with _Position_ less than or equal to this number. Its alias is 'maxIIG'. The default is INT64_MAX, and the minimum value is 1.

See answer
On: groupByInfo
What does the 'direction' parameter control in the core action?

The 'direction' parameter specifies whether the graph should be treated as 'DIRECTED' or 'UNDIRECTED'. In an undirected graph, links are bidirectional, while in a directed graph, links have a specific orientation from a source to a sink node. The default is 'UNDIRECTED'.

See answer
On: core