Register a new data mining algorithm for use with Analytic Services.
The Analytic Services data mining framework provides a set of built-in algorithms. This statement enables you to register additional algorithms from third-party vendors.
Before you register an algorithm, be certain that:
JAR
file containing the class has been created.
JAR
file containing the class is contained in the ARBORPATH\java\udf
directory.
Minimum permission required: Supervisor.
create algorithm Regression as 'com.hyperion.essbase.algorithms.Regression';
Registers an algorithm named Regression for use with the data mining framework. The class, com.hyperion.essbase.algorithms.Regression
, implements this algorithm.
create or replace algorithm Clustering as 'com.hyperion.essbase.algorithms.clustering';
Registers an algorithm named Clustering for use with the data mining framework. The class, com.hyperion.essbase.algorithms.Clustering
, implements this algorithm. If an algorithm named Clustering already exists, the new version replaces it.
You can register an algorithm in the following ways.
Key Phrase | Explanation |
---|---|
create algorithm | Register an algorithm. Algorithm names are case sensitive. |
create or replace algorithm | Register an algorithm, or replace an existing algorithm of the same name. Algorithm names are case sensitive. |
©2004 Hyperion Solutions Corporation. All Rights Reserved. http://www.hyperion.com |