Explore. Share. Code.

The starting point for your SAS® CAS 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

table.computedVars.label

Specifies the descriptive label for the variable.

See answer
On: IdentifySpeakers
Can I filter cliques based on the sum of their link or node weights?

Yes. The `minLinkWeight` and `maxLinkWeight` parameters allow you to filter cliques based on the sum of their link weights. Similarly, `minNodeWeight` and `maxNodeWeight` can be used to filter by the sum of node weights. Cliques with weight sums outside the specified ranges are excluded.

See answer
On: clique
How do I use the `batchresults` action in CASL?

To use the `batchresults` action in CASL, you would call `session.batchresults` and provide the session's UUID. For example: `session.batchresults / uuid="your-session-uuid";`.

See answer
On: batchresults
What is the function of the distinctCountLimit parameter?

The distinctCountLimit parameter specifies the limit for distinct counts. If this limit is exceeded and the misraGries parameter is set to True, the Misra-Gries frequency sketch algorithm is used to estimate the frequency distribution; otherwise, the operation is aborted.

See answer
On: exploreData
table

specifies the settings for an input table. Long form: table={name="table-name"}. Shortcut form: table="table-name". The castable value can be one or more of the following: caslib="string". specifies the caslib for the input table that you want to use with the action. By default, the active caslib is used. Specify a value only if you need to access a table from a different caslib. computedOnDemand=TRUE | FALSE. when set to True, creates the computed variables when the table is loaded instead of when the action begins. Alias: compOnDemand. Default: FALSE. computedVars={{casinvardesc-1} }. specifies the names of the computed variables to create. Specify an expression for each variable in the computedVarsProgram parameter. If you do not specify this parameter, then all variables from computedVarsProgram are automatically included. Alias: compVars. The casinvardesc value can be one or more of the following: format="string". specifies the format to apply to the variable. formattedLength=integer. specifies the length of the format field plus the length of the format precision. label="string". specifies the descriptive label for the variable. name="variable-name". specifies the name for the variable. nfd=integer. specifies the length of the format precision. nfl=integer. specifies the length of the format field. 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. importOptions={fileType="ANY" | "AUDIO" | "AUTO" | "BASESAS" | "CSV" | "DELIMITED" | "DOCUMENT" | "DTA" | "ESP" | "EXCEL" | "FMT" | "HDAT" | "IMAGE" | "JMP" | "LASR" | "PARQUET" | "SOUND" | "SPSS" | "VIDEO" | "XLS", fileType-specific-parameters}. specifies the settings for reading a table from a data source. Alias: import. For more information about specifying the importOptions parameter, see the common importOptions parameter. name="table-name". specifies the name of the input table. singlePass=TRUE | FALSE. when set to True, does not create a transient table on the server. Setting this parameter to True can be efficient, but the data might not have stable ordering upon repeated runs. Default: FALSE. vars={{casinvardesc-1} }. specifies the variables to use in the action. The casinvardesc value can be one or more of the following: format="string". specifies the format to apply to the variable. formattedLength=integer. specifies the length of the format field plus the length of the format precision. label="string". specifies the descriptive label for the variable. name="variable-name". specifies the name for the variable. nfd=integer. specifies the length of the format precision. nfl=integer. specifies the length of the format field. 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. If the vars parameter is not specified, then all the variable names that are common to the input table and the filtering table are used to find matching rows. If the where parameter for the input table and this parameter are specified, then this filtering table is applied first. The groupbytable value can be one or more of the following: casLib="string". specifies the caslib for the filter table. By default, the active caslib is used. dataSourceOptions={adls_noreq-parameters | bigquery-parameters | cas_noreq-parameters | clouddex-parameters | db2-parameters | dnfs-parameters | esp-parameters | fedsvr-parameters | gcs_noreq-parameters | hadoop-parameters | hana-parameters | impala-parameters | informix-parameters | jdbc-parameters | mongodb-parameters | mysql-parameters | odbc-parameters | oracle-parameters | path-parameters | postgres-parameters | redshift-parameters | s3-parameters | sapiq-parameters | sforce-parameters | singlestore_standard-parameters | snowflake-parameters | spark-parameters | spde-parameters | sqlserver-parameters | ss_noreq-parameters | teradata-parameters | vertica-parameters | yellowbrick-parameters}. specifies data source options. Aliases: options, dataSource. For more information about specifying the dataSourceOptions parameter, see the common dataSourceOptions parameter. importOptions={fileType="ANY" | "AUDIO" | "AUTO" | "BASESAS" | "CSV" | "DELIMITED" | "DOCUMENT" | "DTA" | "ESP" | "EXCEL" | "FMT" | "HDAT" | "IMAGE" | "JMP" | "LASR" | "PARQUET" | "SOUND" | "SPSS" | "VIDEO" | "XLS", fileType-specific-parameters}. specifies the settings for reading a table from a data source. Alias: import. For more information about specifying the importOptions parameter, see the common importOptions parameter. name="table-name". specifies the name of the filter table. vars={{casinvardesc-1} }. specifies the variable names to use from the filter table. The casinvardesc value can be one or more of the following: format="string". specifies the format to apply to the variable. formattedLength=integer. specifies the length of the format field plus the length of the format precision. label="string". specifies the descriptive label for the variable. name="variable-name". specifies the name for the variable. nfd=integer. specifies the length of the format precision. nfl=integer. specifies the length of the format field. where="where-expression". specifies an expression for subsetting the data from the filter table.

See answer
On: gbtreeScore