dimensionality_reduction ISOMAP

new ISOMAP(X, parameters)

Isometric feature mapping (ISOMAP).

Parameters:
NameTypeDescription
XMatrix

the high-dimensional data.

parametersobject

Object containing parameterization of the DR method.

Properties
NameTypeAttributesDefaultDescription
neighborsnumber

the number of neighbors ISOMAP should use to project the data.

dnumber<optional>
2

the dimensionality of the projection.

metricfunction<optional>
euclidean

the metric which defines the distance between two points.

seednumber<optional>
1212

the seed for the random number generator.

eig_argsobject<optional>

Parameters for the eigendecomposition algorithm.

Extends

Members

projection

Overrides

Methods

check_init() → {DR}

If the respective DR method has an init function, call it before transform.

Overrides
Returns:
Type: 
DR

(generator) generator() → {Matrix|Array.<Array.<number>>}

Computes the projection.

Overrides
Yields:

the intermediate steps of the projection.

Type: 
Matrix | Array.<Array.<number>>

parameter(nameopt, valueopt) → {DR|any|object}

Set and get parameters

Parameters:
NameTypeAttributesDefaultDescription
namestring<optional>
null

Name of the parameter. If not given then returns all parameters as an Object.

valueany<optional>
null

Value of the parameter to set. If name is set and value is not given, returns the value of the respective parameter.

Overrides
Returns:

On setting a parameter, this function returns the DR object. If name is set and value == null then return actual parameter value. If name is not given, then returns all parameters as an Object.

Type: 
DR | any | object
Example
'''
const DR = new druid.TSNE(X, {d: 3}); // creates a new DR object, with parameter for <code>d</code> = 3.
DR.parameter("d"); // returns 3,
DR.parameter("d", 2); // sets parameter <code>d</code> to 2 and returns <code>DR</code>.
'''

transform() → {Matrix}

Computes the projection.

Overrides
Returns:

Returns the projection.

Type: 
Matrix

(async) transform_async(…args) → {Promise.<(Matrix|Array.<Array.<number>>)>}

Computes the projection.

Parameters:
NameTypeAttributesDescription
argsunknown<repeatable>

Arguments the transform method of the respective DR method takes.

Returns:

the dimensionality reduced dataset.

Type: 
Promise.<(Matrix|Array.<Array.<number>>)>