/* * 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.generator; import java.util.ArrayList; import java.util.GregorianCalendar; import java.util.List; import com.rapidminer.example.Attribute; import com.rapidminer.example.Attributes; import com.rapidminer.example.ExampleSet; import com.rapidminer.example.table.AttributeFactory; import com.rapidminer.example.table.DoubleArrayDataRow; import com.rapidminer.example.table.MemoryExampleTable; import com.rapidminer.operator.OperatorDescription; import com.rapidminer.operator.OperatorException; import com.rapidminer.operator.io.AbstractExampleSource; import com.rapidminer.operator.ports.metadata.AttributeMetaData; import com.rapidminer.operator.ports.metadata.ExampleSetMetaData; import com.rapidminer.operator.ports.metadata.MetaData; import com.rapidminer.parameter.ParameterType; import com.rapidminer.parameter.ParameterTypeInt; import com.rapidminer.tools.Ontology; import com.rapidminer.tools.RandomGenerator; import com.rapidminer.tools.math.container.Range; /** * Generates a random example set for testing purposes. The data represents a sales example set. * * @author Ingo Mierswa */ public class SalesExampleSetGenerator extends AbstractExampleSource { /** The parameter name for "The number of generated examples." */ public static final String PARAMETER_NUMBER_EXAMPLES = "number_examples"; private static final int MAX_STORES = 15; private static final int MAX_CUSTOMERS = 2000; private static final String[] ATTRIBUTE_NAMES = { "transaction_id", "store_id", "customer_id", "product_id", "product_category", "date", "amount", "single_price" }; private static final int ATT_TRANSACTION_ID = 0; private static final int ATT_STORE_ID = 1; private static final int ATT_CUSTOMER_ID = 2; private static final int ATT_PRODUCT_ID = 3; private static final int ATT_PRODUCT_CATEGORY = 4; private static final int ATT_DATE = 5; private static final int ATT_AMOUNT = 6; private static final int ATT_SINGLE_PRICE = 7; private static final String[] PRODUCT_CATEGORIES = new String[] { "Books", "Movies", "Electronics", "Home/Garden", "Health", "Toys", "Sports", "Clothing" }; public SalesExampleSetGenerator(OperatorDescription description) { super(description); } @Override public ExampleSet createExampleSet() throws OperatorException { // init int numberOfExamples = getParameterAsInt(PARAMETER_NUMBER_EXAMPLES); List<Attribute> attributes = new ArrayList<Attribute>(); // transaction id Attribute transactionId = AttributeFactory.createAttribute(ATTRIBUTE_NAMES[ATT_TRANSACTION_ID], Ontology.INTEGER); attributes.add(transactionId); // store id Attribute storeId = AttributeFactory.createAttribute(ATTRIBUTE_NAMES[ATT_STORE_ID], Ontology.NOMINAL); for (int s = 1; s <= MAX_STORES; s++) { storeId.getMapping().mapString("Store " + getFullStoreNumber(s)); } attributes.add(storeId); // customer id Attribute customerId = AttributeFactory.createAttribute(ATTRIBUTE_NAMES[ATT_CUSTOMER_ID], Ontology.NOMINAL); for (int s = 1; s <= MAX_CUSTOMERS; s++) { customerId.getMapping().mapString("Customer " + s); } attributes.add(customerId); // product id attributes.add(AttributeFactory.createAttribute(ATTRIBUTE_NAMES[ATT_PRODUCT_ID], Ontology.INTEGER)); // product category Attribute productCategory = AttributeFactory.createAttribute(ATTRIBUTE_NAMES[ATT_PRODUCT_CATEGORY], Ontology.NOMINAL); for (int s = 0; s < PRODUCT_CATEGORIES.length; s++) { productCategory.getMapping().mapString(PRODUCT_CATEGORIES[s]); } attributes.add(productCategory); // date attributes.add(AttributeFactory.createAttribute(ATTRIBUTE_NAMES[ATT_DATE], Ontology.DATE)); // amount attributes.add(AttributeFactory.createAttribute(ATTRIBUTE_NAMES[ATT_AMOUNT], Ontology.INTEGER)); // single price attributes.add(AttributeFactory.createAttribute(ATTRIBUTE_NAMES[ATT_SINGLE_PRICE], Ontology.REAL)); // create table MemoryExampleTable table = new MemoryExampleTable(attributes); // create data RandomGenerator random = RandomGenerator.getRandomGenerator(this); for (int n = 0; n < numberOfExamples; n++) { double[] values = new double[ATTRIBUTE_NAMES.length]; //"transaction_id", "store_id", "customer_id", "product_id", "product_category", "date", "amount", "single_price" values[0] = n + 1; values[1] = attributes.get(1).getMapping().mapString("Store " + getFullStoreNumber(random.nextIntInRange(1, MAX_STORES + 1))); values[2] = attributes.get(2).getMapping().mapString("Customer " + random.nextIntInRange(1, MAX_CUSTOMERS + 1)); values[3] = random.nextIntInRange(10000, 100000); values[4] = random.nextInt(PRODUCT_CATEGORIES.length); values[5] = random.nextDateInRange(new GregorianCalendar(2005, 1, 1).getTime(), new GregorianCalendar(2008, 10, 30).getTime()).getTime(); values[6] = random.nextIntInRange(1, 10); values[7] = random.nextDoubleInRange(10, 100); table.addDataRow(new DoubleArrayDataRow(values)); } // create example set and return it return table.createExampleSet(null, null, transactionId); } private String getFullStoreNumber(int number) { if (number < 10) { return "0" + number; } else { return number + ""; } } @Override public MetaData getGeneratedMetaData() throws OperatorException { ExampleSetMetaData emd = new ExampleSetMetaData(); emd.addAttribute(new AttributeMetaData("transaction_id", Ontology.INTEGER, Attributes.ID_NAME)); emd.addAttribute(new AttributeMetaData("store_id", null, "Store 01", "Store 02", "Store 03", "Store 04", "Store 05", "Store 06", "Store 07", "Store 08", "Store 09", "Store 10", "Store 11", "Store 12", "Store 13", "Store 14", "Store 15")); String[] customers = new String[MAX_CUSTOMERS]; for (int i = 0; i < MAX_CUSTOMERS; i++) { customers[i] = "Customer " + (i + 1); } emd.addAttribute(new AttributeMetaData("customer_id", null, customers)); emd.addAttribute(new AttributeMetaData("product_id", null, Ontology.INTEGER, new Range(10000, 100000))); emd.addAttribute(new AttributeMetaData("product_category", null, PRODUCT_CATEGORIES)); emd.addAttribute(new AttributeMetaData("date", Ontology.DATE)); emd.addAttribute(new AttributeMetaData("amount", null, Ontology.INTEGER, new Range(1, 10))); emd.addAttribute(new AttributeMetaData("single_price", null, Ontology.INTEGER, new Range(10, 100))); emd.setNumberOfExamples(getParameterAsInt(PARAMETER_NUMBER_EXAMPLES)); return emd; } @Override public List<ParameterType> getParameterTypes() { List<ParameterType> types = super.getParameterTypes(); ParameterType type = new ParameterTypeInt(PARAMETER_NUMBER_EXAMPLES, "The number of generated examples.", 1, Integer.MAX_VALUE, 100); type.setExpert(false); types.add(type); types.addAll(RandomGenerator.getRandomGeneratorParameters(this)); return types; } }