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:
Destroyable,GlobalInfoSupporter,LoggingLevelHandler,LoggingSupporter,OptionHandler,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 SpreadSheetm_Loadingsthe loadings.protected SpreadSheetm_Scoresthe scores.-
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 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.SpreadSheetgetLoadings()Returns the loadings.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.data.analysis.AbstractAnalysis
analyze
-
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
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel
-
-
-
-
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 SpreadSheet m_Loadings
the loadings.
-
m_Scores
protected SpreadSheet m_Scores
the scores.
-
-
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
-
reset
protected void reset()
Resets the scheme.- Overrides:
resetin classAbstractOptionHandler
-
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 classAbstractAnalysis<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 classAbstractAnalysis<weka.core.Instances>- Parameters:
data- the data to analyze- Returns:
- null if successful, otherwise error message
- Throws:
Exception- if analysis fails
-
getLoadings
public SpreadSheet getLoadings()
Returns the loadings.- Returns:
- the loadings, null if not available
-
getScores
public SpreadSheet getScores()
Returns the scores.- Returns:
- the scores, null if not available
-
-