2215 questions found.

Page 12 / 45

The cspade action performs sequence rule mining using the cSpade algorithm to identify frequent sequences in a transaction database....

The required parameters are "table" (input table), "sequenceId" (specifying the sequence or customer column), "eventId" (specifying the event or time column), and "itemId" (specifying the item column)....

You can use the "maxLen" parameter to specify the maximum number of elements in a sequence. The default value is 10....

Use the "support" parameter (alias "supmin") to specify the minimum level of support as a value between 0 and 1. Alternatively, you can use "supportCnt" to specify a minimum count of transactions....

The "maxGap" parameter specifies the maximum time difference allowed between consecutive elements of a sequence....

You can use the "where" parameter to specify an expression for subsetting the input data. Additionally, the "whereTable" parameter allows you to use rows from another table as a filter....

Setting "singlePass" to True prevents the creation of a transient table on the server. This can be more efficient but might result in unstable data ordering upon repeated runs....

You can use the "maxSize" parameter to specify the maximum number of items allowed in an element of a sequence. The default value is 10....

The action produces an output table (specified by the "casout" parameter) that contains the identified frequent sequences and their support values....

The cycle action calculates the cycles of a graph....

The available algorithms are "BACKTRACK" and "BUILD"....

By default, the algorithm is "BACKTRACK" when the value of the maxLength parameter is greater than 20; otherwise, the default is "BUILD"....

You can use the `direction` parameter. Specify "DIRECTED" for a directed graph or "UNDIRECTED" for an undirected graph. The default is "UNDIRECTED"....

When set to True (which is the default), the `deterministic` parameter ensures that each invocation with the same machine configuration and parameter settings produces the same final result....

You can use the `maxCycles` parameter to specify a 64-bit integer limit or set it to "ALL". The default value is 1....

The `minLength` parameter specifies the minimum number of links in a cycle (default is 1), and `maxLength` specifies the maximum number of links....

You can use the `minLinkWeight` and `maxLinkWeight` parameters to specify the minimum and maximum sum of link weights in a cycle....

You can use the `minNodeWeight` and `maxNodeWeight` parameters to specify the minimum and maximum sum of node weights in a cycle....

The action uses the `links` table (required) to contain graph link information and optionally the `nodes` table to contain graph node information....

The `out` parameter specifies the output data table to contain the nodes of the cycles....

You can use the `outCyclesLinks` parameter to specify the output data table for the links of the cycles....

When set to True, the `multiLinks` parameter includes multilinks when an input graph is read. It defaults to True for algorithms that support multilinks....

Use the `maxTime` parameter to specify the maximum amount of time. You can also use the `timeType` parameter to specify whether this is "CPU" time or "REAL" time (default)....

The results include `ProblemSummary` (basic graph input summary), `SolutionSummary` (algorithm solution summary), `numCycles` (number of cycles found), and `solutionStatus`....

The echo action prints the supplied parameters to the client log....

It belongs to the SAS® Viya® Platform: System Programming Guide....

The echo action is included in SAS Cloud Analytic Services, SAS Lua Client Interface for Viya, SAS Python Client for Viya, and SAS Viya Programming....

The content type is Usage and Reference....

The ecm action creates a sample of the enterprise-wide loss by combining the copula simulation with the marginal empirical distributions of losses in business lines....

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

You use the `marginals` parameter, which accepts a list of input tables containing the empirical samples of the marginal distributions....

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....

You can use the `tailEDFAccuracy` parameter to specify the desired accuracy for the empirical distribution function (EDF) of the computed percentiles in the tail region....

The `tailStart` parameter specifies the EDF value where the tail region starts. The default value is 0.8....

You can use the `outsum` parameter. Within this parameter, you can specify `outSummary` for the table name, `percentiles` for specific percentile points, and `summaryStatistics` for statistics like MEAN, STDDEV, and VaR....

When `shuffleData` is set to False, the action does not shuffle the data to worker nodes and does not sample the body region bins. The default is True....

The eig action is used to extract principal components by using the eigenvalue decomposition method....

You can set the "cov" parameter to TRUE. By default, it is set to FALSE....

Use the "n" parameter to specify the number of principal components. If you set the value to 0, all principal components are computed....

Yes, you can omit the intercept by setting the "noInt" parameter to TRUE....

You can specify a numeric variable to use as a weight by using the "weight" parameter....

Yes, you can enable GPU computation by setting the "enable" subparameter within the "gpu" parameter to TRUE. Note that if you specify the "groupBy" subparameter in the "table" parameter, the "gpu" parameter is ignored....

You can use the "store" parameter to specify an output table that will contain the model fit information....

The "singular" parameter specifies the singularity criterion, which ranges from 0 to 1. The default value is 1E-08....

You can use the "outStat" parameter to specify an output table that contains various statistics, including means, standard deviations, eigenvalues, and eigenvectors....

The endSession action is used to end the current session....

The endSession action belongs to the Session Methods Action Set....

The CASL syntax is: session.endSession ;...

No, the endSession action does not typically require any parameters, though optional result and status parameters can be specified in CASL....

The esm action provides functionality for generating exponential smoothing models for univariate time series analysis....