Class SubSample
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.data.spreadsheet.columnfinder.AbstractColumnFinder
-
- adams.data.spreadsheet.columnfinder.SubSample
-
- All Implemented Interfaces:
Destroyable,GlobalInfoSupporter,LoggingLevelHandler,LoggingSupporter,OptionHandler,QuickInfoSupporter,ShallowCopySupporter<ColumnFinder>,SizeOfHandler,ColumnFinder,Serializable
public class SubSample extends AbstractColumnFinder
Returns the indices of a subsample of columns.- Version:
- $Revision: 8096 $
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected RandomIntegerRangeGeneratorm_Generatorthe random number generator.protected booleanm_Invertwhether to invert the selection.protected doublem_Sizethe size of the sample (0-1: percent, >1: absolute number).-
Fields inherited from class adams.core.option.AbstractOptionHandler
m_OptionManager
-
Fields inherited from class adams.core.logging.LoggingObject
m_Logger, m_LoggingIsEnabled, m_LoggingLevel
-
-
Constructor Summary
Constructors Constructor Description SubSample()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddefineOptions()Adds options to the internal list of options.protected int[]doFindColumns(SpreadSheet data)Returns the columns of interest in the spreadsheet.StringgeneratorTipText()Returns the tip text for this property.RandomIntegerRangeGeneratorgetGenerator()Returns the random number generator.booleangetInvert()Returns whether to invert the matching.StringgetQuickInfo()Returns a quick info about the object, which can be displayed in the GUI.doublegetSize()Returns the size of the sample (0-1: percentage, >1: absolute number).StringglobalInfo()Returns a string describing the object.StringinvertTipText()Returns the tip text for this property.voidsetGenerator(RandomIntegerRangeGenerator value)Sets the random number generator.voidsetInvert(boolean value)Sets whether to invert the matching.voidsetSize(double value)Sets the size of the sample (0-1: percentage, >1: absolute number).StringsizeTipText()Returns the tip text for this property.-
Methods inherited from class adams.data.spreadsheet.columnfinder.AbstractColumnFinder
arrayToHashSet, check, compareTo, equals, filter, filter, findColumns, forCommandLine, forName, getColumnFinders, shallowCopy, shallowCopy
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, initialize, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel
-
-
-
-
Field Detail
-
m_Size
protected double m_Size
the size of the sample (0-1: percent, >1: absolute number).
-
m_Generator
protected RandomIntegerRangeGenerator m_Generator
the random number generator.
-
m_Invert
protected boolean m_Invert
whether to invert the selection.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfoin interfaceGlobalInfoSupporter- Specified by:
globalInfoin classAbstractOptionHandler- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptionsin interfaceOptionHandler- Overrides:
defineOptionsin classAbstractOptionHandler
-
setSize
public void setSize(double value)
Sets the size of the sample (0-1: percentage, >1: absolute number).- Parameters:
value- the size
-
getSize
public double getSize()
Returns the size of the sample (0-1: percentage, >1: absolute number).- Returns:
- the size
-
sizeTipText
public String sizeTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setGenerator
public void setGenerator(RandomIntegerRangeGenerator value)
Sets the random number generator.- Parameters:
value- the generator
-
getGenerator
public RandomIntegerRangeGenerator getGenerator()
Returns the random number generator.- Returns:
- the generator
-
generatorTipText
public String generatorTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setInvert
public void setInvert(boolean value)
Sets whether to invert the matching.- Parameters:
value- true if to invert
-
getInvert
public boolean getInvert()
Returns whether to invert the matching.- Returns:
- true if to invert
-
invertTipText
public String invertTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
getQuickInfo
public String getQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.- Specified by:
getQuickInfoin interfaceQuickInfoSupporter- Overrides:
getQuickInfoin classAbstractColumnFinder- Returns:
- null if no info available, otherwise short string
-
doFindColumns
protected int[] doFindColumns(SpreadSheet data)
Returns the columns of interest in the spreadsheet.- Specified by:
doFindColumnsin classAbstractColumnFinder- Parameters:
data- the spreadsheet to inspect- Returns:
- the columns of interest
-
-