/* * RapidMiner * * Copyright (C) 2001-2011 by Rapid-I and the contributors * * Complete list of developers available at our web site: * * http://rapid-i.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see http://www.gnu.org/licenses/. */ package com.rapidminer.operator.preprocessing.normalization; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.List; import com.rapidminer.example.Attribute; import com.rapidminer.example.ExampleSet; import com.rapidminer.example.Statistics; import com.rapidminer.operator.Operator; import com.rapidminer.operator.UserError; import com.rapidminer.operator.ports.InputPort; import com.rapidminer.operator.ports.metadata.AttributeMetaData; import com.rapidminer.operator.ports.metadata.ExampleSetMetaData; import com.rapidminer.operator.ports.metadata.MDReal; import com.rapidminer.operator.ports.metadata.SetRelation; import com.rapidminer.parameter.ParameterHandler; import com.rapidminer.parameter.ParameterType; import com.rapidminer.parameter.ParameterTypeDouble; import com.rapidminer.parameter.UndefinedParameterError; import com.rapidminer.tools.container.Tupel; import com.rapidminer.tools.math.container.Range; /** * This is the transformation method for transforming the data of an attribute * into a certain interval. * * @author Sebastian Land */ public class RangeNormalizationMethod extends AbstractNormalizationMethod { /** The parameter name for "The minimum value after normalization" */ public static final String PARAMETER_MIN = "min"; /** The parameter name for "The maximum value after normalization" */ public static final String PARAMETER_MAX = "max"; @Override public Collection<AttributeMetaData> modifyAttributeMetaData(ExampleSetMetaData emd, AttributeMetaData amd, InputPort exampleSetInputPort, ParameterHandler parameterHandler) throws UndefinedParameterError { double min = parameterHandler.getParameterAsDouble(PARAMETER_MIN); double max = parameterHandler.getParameterAsDouble(PARAMETER_MAX); amd.setMean(new MDReal()); amd.setValueRange(new Range(min, max), SetRelation.EQUAL); return Collections.singleton(amd); } @Override public AbstractNormalizationModel getNormalizationModel(ExampleSet exampleSet, Operator operator) throws UserError { // Range Normalization double min = operator.getParameterAsDouble(PARAMETER_MIN); double max = operator.getParameterAsDouble(PARAMETER_MAX); if (max <= min) throw new UserError(operator, 116, "max", "Must be greater than 'min'"); // calculating attribute ranges HashMap<String, Tupel<Double, Double>> attributeRanges = new HashMap<String, Tupel<Double, Double>>(); exampleSet.recalculateAllAttributeStatistics(); for (Attribute attribute : exampleSet.getAttributes()) { if (attribute.isNumerical()) { attributeRanges.put(attribute.getName(), new Tupel<Double, Double>(exampleSet.getStatistics(attribute, Statistics.MINIMUM), exampleSet.getStatistics(attribute, Statistics.MAXIMUM))); } } return new MinMaxNormalizationModel(exampleSet, min, max, attributeRanges); } @Override public String getName() { return "range transformation"; } @Override public List<ParameterType> getParameterTypes(ParameterHandler handler) { List<ParameterType> types = super.getParameterTypes(handler); types.add(new ParameterTypeDouble(PARAMETER_MIN, "The minimum value after normalization", Double.NEGATIVE_INFINITY, Double.POSITIVE_INFINITY, 0.0d)); types.add(new ParameterTypeDouble(PARAMETER_MAX, "The maximum value after normalization", Double.NEGATIVE_INFINITY, Double.POSITIVE_INFINITY, 1.0d)); return types; } }