⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stringlocator.java

📁 Java 编写的多种数据挖掘算法 包括聚类、分类、预处理等
💻 JAVA
字号:
/* *    This program is free software; you can redistribute it and/or modify *    it under the terms of the GNU General Public License as published by *    the Free Software Foundation; either version 2 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 General Public License for more details. * *    You should have received a copy of the GNU General Public License *    along with this program; if not, write to the Free Software *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *//* * StringLocator.java * Copyright (C) 2005 University of Waikato, Hamilton, New Zealand */package weka.core;/** * This class locates and records the indices of String attributes,  * recursively in case of Relational attributes. The indices are normally * used for copying the Strings from one Instances object to another. *  * @author fracpete (fracpete at waikato dot ac dot nz) * @version $Revision: 1.2 $ * @see Attribute#STRING * @see Attribute#RELATIONAL */public class StringLocator  extends AttributeLocator {    /** for serialization */  private static final long serialVersionUID = 7805522230268783972L;  /**   * initializes the StringLocator with the given data   *    * @param data	the data to work on   */  public StringLocator(Instances data) {    super(data, Attribute.STRING);  }    /**   * Initializes the StringLocator with the given data.    * Checks only the given range.   *    * @param data	the data to work on   * @param fromIndex	the first index to inspect (including)   * @param toIndex	the last index to check (including)   */  public StringLocator(Instances data, int fromIndex, int toIndex) {    super(data, Attribute.STRING, fromIndex, toIndex);  }    /**   * Initializes the AttributeLocator with the given data.   * Checks only the specified attribute indices.   *    * @param data	the data to work on   * @param indices	the attribute indices to check   */  public StringLocator(Instances data, int[] indices) {    super(data, Attribute.STRING, indices);  }  /**   * Copies string values contained in the instance copied to a new   * dataset. The Instance must already be assigned to a dataset. This   * dataset and the destination dataset must have the same structure.   *   * @param inst 		the Instance containing the string values to copy.   * @param destDataset 	the destination set of Instances   * @param strAtts 		an AttributeLocator containing the indices of    * 				any string attributes in the dataset.     */  public static void copyStringValues(Instance inst, Instances destDataset,                                AttributeLocator strAtts) {    if (inst.dataset() == null) {      throw new IllegalArgumentException("Instance has no dataset assigned!!");    } else if (inst.dataset().numAttributes() != destDataset.numAttributes()) {      throw new IllegalArgumentException("Src and Dest differ in # of attributes!!");    }     copyStringValues(inst, true, inst.dataset(), strAtts,                     destDataset, strAtts);  }  /**   * Takes string values referenced by an Instance and copies them from a   * source dataset to a destination dataset. The instance references are   * updated to be valid for the destination dataset. The instance may have the    * structure (i.e. number and attribute position) of either dataset (this   * affects where references are obtained from). Only works if the number   * of string attributes is the same in both indices (implicitly these string   * attributes should be semantically same but just with shifted positions).   *   * @param instance 		the instance containing references to strings    * 				in the source dataset that will have references    * 				updated to be valid for the destination dataset.   * @param instSrcCompat 	true if the instance structure is the same as    * 				the source, or false if it is the same as the    * 				destination (i.e. which of the string attribute    * 				indices contains the correct locations for this    * 				instance).   * @param srcDataset 		the dataset for which the current instance    * 				string references are valid (after any position    * 				mapping if needed)   * @param srcLoc 		an AttributeLocator containing the indices of    * 				string attributes in the source datset.   * @param destDataset 	the dataset for which the current instance    * 				string references need to be inserted (after    * 				any position mapping if needed)   * @param destLoc 	an AttributeLocator containing the indices of    * 				string attributes in the destination datset.   */  public static void copyStringValues(Instance instance, boolean instSrcCompat,                                  Instances srcDataset, AttributeLocator srcLoc,                                  Instances destDataset, AttributeLocator destLoc) {    if (srcDataset == destDataset)      return;        if (srcLoc.getAttributeIndices().length != destLoc.getAttributeIndices().length)      throw new IllegalArgumentException("Src and Dest string indices differ in length!!");    if (srcLoc.getLocatorIndices().length != destLoc.getLocatorIndices().length)      throw new IllegalArgumentException("Src and Dest locator indices differ in length!!");    for (int i = 0; i < srcLoc.getAttributeIndices().length; i++) {      int instIndex  = instSrcCompat       			  ? srcLoc.getActualIndex(srcLoc.getAttributeIndices()[i])       			  : destLoc.getActualIndex(destLoc.getAttributeIndices()[i]);      Attribute src  = srcDataset.attribute(srcLoc.getActualIndex(srcLoc.getAttributeIndices()[i]));      Attribute dest = destDataset.attribute(destLoc.getActualIndex(destLoc.getAttributeIndices()[i]));      if (!instance.isMissing(instIndex)) {        int valIndex = dest.addStringValue(src, (int)instance.value(instIndex));        instance.setValue(instIndex, (double)valIndex);      }    }        // recurse if necessary    int[] srcIndices  = srcLoc.getLocatorIndices();    int[] destIndices = destLoc.getLocatorIndices();    for (int i = 0; i < srcIndices.length; i++) {      Instances rel = instSrcCompat        	         ? instance.relationalValue(srcLoc.getActualIndex(srcIndices[i]))        	         : instance.relationalValue(destLoc.getActualIndex(destIndices[i]));      AttributeLocator srcStrAttsNew = srcLoc.getLocator(srcIndices[i]);      Instances srcDatasetNew = srcStrAttsNew.getData();      AttributeLocator destStrAttsNew = destLoc.getLocator(destIndices[i]);      Instances destDatasetNew = destStrAttsNew.getData();      for (int n = 0; n < rel.numInstances(); n++) {        copyStringValues(rel.instance(n), instSrcCompat, srcDatasetNew, srcStrAttsNew, destDatasetNew, destStrAttsNew);      }    }  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -