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

What information does the `termInfo` parameter require?

The `termInfo` parameter specifies information about the terms table. It requires the `id` subparameter for the term ID, and can optionally include `label` for the term's text and `table` for the input data table containing term information.

See answer
On: brTrain
How can I configure SSL/TLS for a custom S3 region?

You can manage SSL/TLS settings with several boolean parameters. 'sslrequired=TRUE' enforces that all communications use SSL. 'sslallowed=TRUE' permits SSL communication but is ignored if 'sslrequired' is also set to TRUE. Conversely, 'nossl=TRUE' disables SSL/TLS for the data transfer.

See answer
On: addRegion
What is the purpose of the collection parameter?

defines a set of variables that are treated as a single effect that has multiple degrees of freedom. The collection value can be one or more of the following:

See answer
On: gvarcluster
outputTableOptions

specifies options for result tables. You can specify which result tables the server returns and how group-by results are handled. Alias: tblOpts. The outputTableOptions value can be one or more of the following: forceTableReturn: when set to True, result tables are returned to the client even if the output is also saved as an output table. Default: FALSE. tableNames: specifies the names of result tables to generate. By default, all result tables are returned. Alias: outputTables.

See answer
On: highCardinality
Is it possible to run the cross-validation folds in parallel?

Yes, by default, the folds are evaluated in parallel. You can control this behavior with the 'parallelFolds' parameter (defaulting to True) and specify the number of worker nodes for each subsession with the 'nSubsessionWorkers' parameter.

See answer
On: crossValidate