ExtensionsCatalog Class

Definition

Collection of extension methods for TransformsCatalog to create instances of missing value transformer components.

public static class ExtensionsCatalog
type ExtensionsCatalog = class
Public Module ExtensionsCatalog
Inheritance
ExtensionsCatalog

Methods

IndicateMissingValues(TransformsCatalog, InputOutputColumnPair[])

Create a MissingValueIndicatorEstimator, which copies the data from the column specified in InputColumnName to a new column: OutputColumnName.

IndicateMissingValues(TransformsCatalog, String, String)

Create a MissingValueIndicatorEstimator, which scans the data from the column specified in inputColumnName and fills new column specified in outputColumnName with vector of bools where i-th bool has value of true if i-th element in column data has missing value and false otherwise.

ReplaceMissingValues(TransformsCatalog, InputOutputColumnPair[], MissingValueReplacingEstimator+ReplacementMode, Boolean)

Create a ColumnCopyingEstimator, which copies the data from the column specified in InputColumnName to a new column: OutputColumnName and replaces missing values in it according to replacementMode.

ReplaceMissingValues(TransformsCatalog, String, String, MissingValueReplacingEstimator+ReplacementMode, Boolean)

Create a MissingValueReplacingEstimator, which copies the data from the column specified in inputColumnName to a new column: outputColumnName and replaces missing values in it according to replacementMode.

Applies to