Package adams.data.instancesanalysis
Class PLS
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.data.analysis.AbstractAnalysis<weka.core.Instances>
-
- adams.data.instancesanalysis.AbstractInstancesAnalysis
-
- adams.data.instancesanalysis.PLS
-
- All Implemented Interfaces:
adams.core.Destroyable,adams.core.GlobalInfoSupporter,adams.core.logging.LoggingLevelHandler,adams.core.logging.LoggingSupporter,adams.core.option.OptionHandler,adams.core.SizeOfHandler,Serializable
public class PLS extends AbstractInstancesAnalysis
Performs partial least squares analysis and allows access to loadings and scores.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected AbstractPLSm_Algorithmthe algorithm to use.protected WekaAttributeRangem_AttributeRangethe range of attributes to work.protected adams.data.spreadsheet.SpreadSheetm_Loadingsthe loadings.protected adams.data.spreadsheet.SpreadSheetm_Scoresthe scores.
-
Constructor Summary
Constructors Constructor Description PLS()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringalgorithmTipText()Returns the tip text for this property.StringattributeRangeTipText()Returns the tip text for this property.protected voidcheck(weka.core.Instances data)Hook method for checks.voiddefineOptions()Adds options to the internal list of options.protected StringdoAnalyze(weka.core.Instances data)Performs the actual analysis.AbstractPLSgetAlgorithm()Returns the algorithm to use.WekaAttributeRangegetAttributeRange()Returns the attribute range parameter.adams.data.spreadsheet.SpreadSheetgetLoadings()Returns the loadings.adams.data.spreadsheet.SpreadSheetgetScores()Returns the scores.StringglobalInfo()Returns a string describing the object.protected voidreset()Resets the scheme.voidsetAlgorithm(AbstractPLS value)Sets the algorithm to use.voidsetAttributeRange(WekaAttributeRange value)Sets the attribute range parameter.-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, initialize, loggingLevelTipText, newOptionManager, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
-
-
-
Field Detail
-
m_AttributeRange
protected WekaAttributeRange m_AttributeRange
the range of attributes to work.
-
m_Algorithm
protected AbstractPLS m_Algorithm
the algorithm to use.
-
m_Loadings
protected adams.data.spreadsheet.SpreadSheet m_Loadings
the loadings.
-
m_Scores
protected adams.data.spreadsheet.SpreadSheet m_Scores
the scores.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfoin interfaceadams.core.GlobalInfoSupporter- Specified by:
globalInfoin classadams.core.option.AbstractOptionHandler- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptionsin interfaceadams.core.option.OptionHandler- Overrides:
defineOptionsin classadams.core.option.AbstractOptionHandler
-
reset
protected void reset()
Resets the scheme.- Overrides:
resetin classadams.core.option.AbstractOptionHandler
-
setAttributeRange
public void setAttributeRange(WekaAttributeRange value)
Sets the attribute range parameter.- Parameters:
value- the range
-
getAttributeRange
public WekaAttributeRange getAttributeRange()
Returns the attribute range parameter.- Returns:
- the range
-
attributeRangeTipText
public String attributeRangeTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setAlgorithm
public void setAlgorithm(AbstractPLS value)
Sets the algorithm to use.- Parameters:
value- the algorithm
-
getAlgorithm
public AbstractPLS getAlgorithm()
Returns the algorithm to use.- Returns:
- the algorithm
-
algorithmTipText
public String algorithmTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
check
protected void check(weka.core.Instances data)
Hook method for checks.- Overrides:
checkin classadams.data.analysis.AbstractAnalysis<weka.core.Instances>- Parameters:
data- the data to check
-
doAnalyze
protected String doAnalyze(weka.core.Instances data) throws Exception
Performs the actual analysis.- Specified by:
doAnalyzein classadams.data.analysis.AbstractAnalysis<weka.core.Instances>- Parameters:
data- the data to analyze- Returns:
- null if successful, otherwise error message
- Throws:
Exception- if analysis fails
-
getLoadings
public adams.data.spreadsheet.SpreadSheet getLoadings()
Returns the loadings.- Returns:
- the loadings, null if not available
-
getScores
public adams.data.spreadsheet.SpreadSheet getScores()
Returns the scores.- Returns:
- the scores, null if not available
-
-