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

How can I handle classification variables within the 'logistic' action?

Classification variables are specified using the 'class' parameter. This allows you to define how these variables are parameterized in the model, including setting the reference level ('ref'), the ordering of levels ('order'), and the parameterization style ('param', e.g., 'EFFECT' or 'GLM').

See answer
On: logistic
What does the bodySampleFrac parameter control?

The `bodySampleFrac` parameter specifies the fraction of points to be sampled from bins that fall in the body region, which is determined by the `tailStart` parameter.

See answer
On: ecm
How can I control the specific tables and reports that are displayed from the item store?

You can use the 'viewOptions' parameter to control the output. It accepts several boolean flags such as 'all', 'minimal', 'finalEstimates', 'correlations', 'fitModelSummary', and 'modelDefinition' to customize which reports are displayed.

See answer
On: copulaViewStore
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 methodInterval?

Specifies the imputation technique for interval variables. Be aware that you can specify numeric variables as nominal using the nomVarsIndices parameter. Alias: methodContinuous. Default: MEAN. Options: MAX (replaces missing values with the maximum value), MEAN (replaces missing values with the mean), MEDIAN (replaces missing values with the median), MIDRANGE (replaces missing values with the mean of the maximum value and minimum value), MIN (replaces missing values with the minimum value), RANDOM (replaces missing values with uniform random numbers), VALUE (replaces missing values with the values specified in the valuesInterval and valuesNominal parameters).

See answer
On: impute