Class: OAS

Oracle Approximating Shrinkage Estimator.

Read more in the User Guide.

Python Reference

Constructors

new OAS()

new OAS(opts?): OAS

Parameters

ParameterTypeDescription
opts?object-
opts.assume_centered?booleanIf true, data will not be centered before computation. Useful when working with data whose mean is almost, but not exactly zero. If false (default), data will be centered before computation.
opts.store_precision?booleanSpecify if the estimated precision is stored.

Returns OAS

Defined in generated/covariance/OAS.ts:23

Properties

PropertyTypeDefault valueDefined in
_isDisposedbooleanfalsegenerated/covariance/OAS.ts:21
_isInitializedbooleanfalsegenerated/covariance/OAS.ts:20
_pyPythonBridgeundefinedgenerated/covariance/OAS.ts:19
idstringundefinedgenerated/covariance/OAS.ts:16
optsanyundefinedgenerated/covariance/OAS.ts:17

Accessors

covariance_

Get Signature

get covariance_(): Promise<ArrayLike[]>

Estimated covariance matrix.

Returns Promise<ArrayLike[]>

Defined in generated/covariance/OAS.ts:372


feature_names_in_

Get Signature

get feature_names_in_(): Promise<ArrayLike>

Names of features seen during fit. Defined only when X has feature names that are all strings.

Returns Promise<ArrayLike>

Defined in generated/covariance/OAS.ts:484


location_

Get Signature

get location_(): Promise<ArrayLike>

Estimated location, i.e. the estimated mean.

Returns Promise<ArrayLike>

Defined in generated/covariance/OAS.ts:395


n_features_in_

Get Signature

get n_features_in_(): Promise<number>

Number of features seen during fit.

Returns Promise<number>

Defined in generated/covariance/OAS.ts:461


precision_

Get Signature

get precision_(): Promise<ArrayLike[]>

Estimated pseudo inverse matrix. (stored only if store_precision is true)

Returns Promise<ArrayLike[]>

Defined in generated/covariance/OAS.ts:417


py

Get Signature

get py(): PythonBridge

Returns PythonBridge

Set Signature

set py(pythonBridge): void

Parameters

ParameterType
pythonBridgePythonBridge

Returns void

Defined in generated/covariance/OAS.ts:42


shrinkage_

Get Signature

get shrinkage_(): Promise<number>

coefficient in the convex combination used for the computation of the shrunk estimate. Range is [0, 1].

Returns Promise<number>

Defined in generated/covariance/OAS.ts:439

Methods

dispose()

dispose(): Promise<void>

Disposes of the underlying Python resources.

Once dispose() is called, the instance is no longer usable.

Returns Promise<void>

Defined in generated/covariance/OAS.ts:93


error_norm()

error_norm(opts): Promise<number>

Compute the Mean Squared Error between two covariance estimators.

Parameters

ParameterTypeDescription
optsobject-
opts.comp_cov?ArrayLike[]The covariance to compare with.
opts.norm?"frobenius" | "spectral"The type of norm used to compute the error. Available error types: - ‘frobenius’ (default): sqrt(tr(A^t.A)) - ‘spectral’: sqrt(max(eigenvalues(A^t.A)) where A is the error (comp_cov \- self.covariance_).
opts.scaling?booleanIf true (default), the squared error norm is divided by n_features. If false, the squared error norm is not rescaled.
opts.squared?booleanWhether to compute the squared error norm or the error norm. If true (default), the squared error norm is returned. If false, the error norm is returned.

Returns Promise<number>

Defined in generated/covariance/OAS.ts:110


fit()

fit(opts): Promise<any>

Fit the Oracle Approximating Shrinkage covariance model to X.

Parameters

ParameterTypeDescription
optsobject-
opts.X?ArrayLike[]Training data, where n_samples is the number of samples and n_features is the number of features.
opts.y?anyNot used, present for API consistency by convention.

Returns Promise<any>

Defined in generated/covariance/OAS.ts:163


get_metadata_routing()

get_metadata_routing(opts): Promise<any>

Get metadata routing of this object.

Please check User Guide on how the routing mechanism works.

Parameters

ParameterTypeDescription
optsobject-
opts.routing?anyA MetadataRequest encapsulating routing information.

Returns Promise<any>

Defined in generated/covariance/OAS.ts:201


get_precision()

get_precision(opts): Promise<any>

Getter for the precision matrix.

Parameters

ParameterTypeDescription
optsobject-
opts.precision_?ArrayLike[]The precision matrix associated to the current covariance object.

Returns Promise<any>

Defined in generated/covariance/OAS.ts:233


init()

init(py): Promise<void>

Initializes the underlying Python resources.

This instance is not usable until the Promise returned by init() resolves.

Parameters

ParameterType
pyPythonBridge

Returns Promise<void>

Defined in generated/covariance/OAS.ts:55


mahalanobis()

mahalanobis(opts): Promise<ArrayLike>

Compute the squared Mahalanobis distances of given observations.

Parameters

ParameterTypeDescription
optsobject-
opts.X?ArrayLike[]The observations, the Mahalanobis distances of the which we compute. Observations are assumed to be drawn from the same distribution than the data used in fit.

Returns Promise<ArrayLike>

Defined in generated/covariance/OAS.ts:265


score()

score(opts): Promise<number>

Compute the log-likelihood of X_test under the estimated Gaussian model.

The Gaussian model is defined by its mean and covariance matrix which are represented respectively by self.location_ and self.covariance_.

Parameters

ParameterTypeDescription
optsobject-
opts.X_test?ArrayLike[]Test data of which we compute the likelihood, where n_samples is the number of samples and n_features is the number of features. X_test is assumed to be drawn from the same distribution than the data used in fit (including centering).
opts.y?anyNot used, present for API consistency by convention.

Returns Promise<number>

Defined in generated/covariance/OAS.ts:299


set_score_request()

set_score_request(opts): Promise<any>

Request metadata passed to the score method.

Note that this method is only relevant if enable_metadata_routing=True (see sklearn.set_config). Please see User Guide on how the routing mechanism works.

The options for each parameter are:

Parameters

ParameterTypeDescription
optsobject-
opts.X_test?string | booleanMetadata routing for X_test parameter in score.

Returns Promise<any>

Defined in generated/covariance/OAS.ts:340