Search Results

725 résultats trouvés Page 27 / 73
FAQ
Voir

What is the primary purpose of the loadTable action?

The loadTable action is used to load a table from a caslib's data source into memory.

FAQ
Voir

How can I specify the output table for the loaded data?

Use the 'casOut' parameter. It allows you to define the settings for the output table, including its name and the caslib where it should be stored.

FAQ
Voir

What does the 'promote' parameter do?

When 'promote' is set to TRUE, the loaded table is given a global scope, making it accessible to other CAS sessions, provided the target caslib is also global.

FAQ
Voir

How can I generate scoring code into a CAS output table?

Use the 'casOut' parameter to specify the settings for the output table where the generated DATA step code will be stored. You need to provide a name for the table and optionally the caslib.

FAQ
Voir

How do I specify the output table for the scoring results?

You must use the 'casOut' parameter. This is a required parameter where you specify the name and caslib for the output table that will store the scoring results.

FAQ
Voir

How do you specify the output table for the longToWide action?

You use the 'casOut' parameter to specify the settings for the output table, including its name and the caslib where it should be stored. For example: casOut={'name':'wide_table', 'caslib':'casuser'}.

FAQ
Voir

How do I specify the input table for the matching process?

Use the `inTable` parameter to specify the input data table. You need to provide the table name and optionally the caslib.

Code SAS
Voir

SAS Viya CAS Environment Information

This SAS Viya script provides detailed information about the Cloud Analytic Services (CAS) environment, including the CAS session, active caslibs, and CAS server details.

Code SAS
Voir

Definition and Management of User-Defined CAS Actions

This SAS script defines and manages User-Defined Actions (UDAs) for SAS Cloud Analytic Services (CAS), enabling detailed analysis of CAS tables, column profiling, and the merging of data from image processing. It makes these actions persistent by saving them to a dedicated CASLIB.

Code SAS
Voir

Character to VARCHAR type conversion when loading into CAS

This SAS script demonstrates how to convert character variables to VARCHAR type when loading a table into CAS, in order to reduce the size of CAS tables. It configures CASLIBs, creates test data, and uses PROC CASUTIL for the conversion, then verifies the resulting data types.