org.ujmp.core.doublematrix.calculation.general.missingvalues
Enum Impute.ImputationMethod
java.lang.Object
java.lang.Enum<Impute.ImputationMethod>
org.ujmp.core.doublematrix.calculation.general.missingvalues.Impute.ImputationMethod
- All Implemented Interfaces:
- Serializable, Comparable<Impute.ImputationMethod>
- Enclosing class:
- Impute
public static enum Impute.ImputationMethod
- extends Enum<Impute.ImputationMethod>
Zero
public static final Impute.ImputationMethod Zero
RowMean
public static final Impute.ImputationMethod RowMean
ColumnMean
public static final Impute.ImputationMethod ColumnMean
Regression
public static final Impute.ImputationMethod Regression
KNN
public static final Impute.ImputationMethod KNN
EM
public static final Impute.ImputationMethod EM
BPCA
public static final Impute.ImputationMethod BPCA
EMimputeGene
public static final Impute.ImputationMethod EMimputeGene
EMimputeArray
public static final Impute.ImputationMethod EMimputeArray
LSimputeGene
public static final Impute.ImputationMethod LSimputeGene
LSimputeArray
public static final Impute.ImputationMethod LSimputeArray
LSimputeCombined
public static final Impute.ImputationMethod LSimputeCombined
LSimputeAdaptive
public static final Impute.ImputationMethod LSimputeAdaptive
values
public static Impute.ImputationMethod[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Impute.ImputationMethod c : Impute.ImputationMethod.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Impute.ImputationMethod valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2010. All Rights Reserved.