Package adams.data.instance
Class Instance
- java.lang.Object
-
- adams.data.container.AbstractDataContainer<InstancePoint>
-
- adams.data.instance.Instance
-
- All Implemented Interfaces:
CloneHandler,Mergeable<DataContainer>,UniqueIDHandler,DataContainer<InstancePoint>,IDHandler,MutableIDHandler,NotesHandler,MutableReportHandler<Report>,ReportHandler<Report>,SpreadSheetSupporter,Serializable,Comparable,Iterable<InstancePoint>,Collection<InstancePoint>
public class Instance extends AbstractDataContainer<InstancePoint> implements MutableReportHandler<Report>, NotesHandler, SpreadSheetSupporter
Stores values from weka.core.Instance objects, with X being the attribute index (integer) and Y being the internal value (double).- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected static DataPointComparatorm_Comparatorthe default comparator.protected weka.core.Instancesm_DatasetHeadera reference to the dataset the data was obtained from.protected Notesm_Notesthe notes for the chromatogram.protected Reportm_Reportthe automatically generated report.static StringREPORT_ADDITIONAL_PREFIXthe key prefix in the report for the additional attributes.static StringREPORT_CLASSthe key in the report for the class.static StringREPORT_DATASETthe key in the report for the dataset name.static StringREPORT_DB_IDthe key in the report for the database ID.static StringREPORT_DISPLAY_IDthe key in the report for the display ID.static StringREPORT_IDthe key in the report for the ID.static StringREPORT_ROWthe key in the report for the row in the dataset.-
Fields inherited from class adams.data.container.AbstractDataContainer
m_ID, m_Points, m_UUID
-
-
Constructor Summary
Constructors Constructor Description Instance()Initializes the sequence.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidassign(DataContainer<InstancePoint> other)Obtains the stored variables from the other data point, but not the actual data points.voidclear()Removes all the points and report and nulls the header reference.DataPointComparator<InstancePoint>getComparator()Returns the comparator in use.weka.core.InstancesgetDatasetHeader()Returns the header of the underlying dataset.NotesgetNotes()Returns the currently stored notes.ReportgetReport()Returns the report.booleanhasDatasetHeader()Returns whether a header of a dataset is available.booleanhasReport()Checks whether a report is present.DataPointComparator<InstancePoint>newComparator()Returns the comparator in use.InstancePointnewPoint()Returns a new instance of a sequence point.protected ReportnewReport()Creates an empty report.voidset(weka.core.Instance inst)Clears the container and adds the data from the weka.core.Instance (internal values).voidset(weka.core.Instance inst, int index, int[] additional, Range range, HashSet<Integer> attTypes)Clears the container and adds the data from the weka.core.Instance (internal values).voidsetID(String value)Sets the ID of the sequence.voidsetReport(Report value)Sets a new report.double[]toDoubleArray()Returns the y values as double array.weka.core.InstancetoInstance()Generates a weka instance, if a dataset header is available.SpreadSheettoSpreadSheet()Returns the content as spreadsheet.-
Methods inherited from class adams.data.container.AbstractDataContainer
add, addAll, compareTo, compareToData, compareToHeader, contains, containsAll, ensureCapacity, equals, equalsData, equalsHeader, getClone, getHeader, getID, getUniqueID, hashCode, isEmpty, iterator, mergeWith, modifiedListener, newInstance, remove, removeAll, retainAll, size, toArray, toArray, toList, toList, toString, toTreeSet, toTreeSet, trimToSize
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, spliterator, stream, toArray
-
-
-
-
Field Detail
-
REPORT_DATASET
public static final String REPORT_DATASET
the key in the report for the dataset name.- See Also:
- Constant Field Values
-
REPORT_DB_ID
public static final String REPORT_DB_ID
the key in the report for the database ID.- See Also:
- Constant Field Values
-
REPORT_ID
public static final String REPORT_ID
the key in the report for the ID.- See Also:
- Constant Field Values
-
REPORT_DISPLAY_ID
public static final String REPORT_DISPLAY_ID
the key in the report for the display ID.- See Also:
- Constant Field Values
-
REPORT_CLASS
public static final String REPORT_CLASS
the key in the report for the class.- See Also:
- Constant Field Values
-
REPORT_ROW
public static final String REPORT_ROW
the key in the report for the row in the dataset.- See Also:
- Constant Field Values
-
REPORT_ADDITIONAL_PREFIX
public static final String REPORT_ADDITIONAL_PREFIX
the key prefix in the report for the additional attributes.- See Also:
- Constant Field Values
-
m_Comparator
protected static DataPointComparator m_Comparator
the default comparator.
-
m_DatasetHeader
protected weka.core.Instances m_DatasetHeader
a reference to the dataset the data was obtained from.
-
m_Report
protected Report m_Report
the automatically generated report.
-
m_Notes
protected Notes m_Notes
the notes for the chromatogram.
-
-
Method Detail
-
setID
public void setID(String value)
Sets the ID of the sequence.- Specified by:
setIDin interfaceMutableIDHandler- Overrides:
setIDin classAbstractDataContainer<InstancePoint>- Parameters:
value- the new ID
-
newComparator
public DataPointComparator<InstancePoint> newComparator()
Returns the comparator in use.- Specified by:
newComparatorin interfaceDataContainer<InstancePoint>- Returns:
- the comparator to use
-
getComparator
public DataPointComparator<InstancePoint> getComparator()
Returns the comparator in use.- Specified by:
getComparatorin interfaceDataContainer<InstancePoint>- Returns:
- the comparator in use
-
newPoint
public InstancePoint newPoint()
Returns a new instance of a sequence point.- Specified by:
newPointin interfaceDataContainer<InstancePoint>- Returns:
- the new sequence point
-
newReport
protected Report newReport()
Creates an empty report.- Returns:
- the empty report
-
clear
public void clear()
Removes all the points and report and nulls the header reference.- Specified by:
clearin interfaceCollection<InstancePoint>- Overrides:
clearin classAbstractDataContainer<InstancePoint>- See Also:
m_DatasetHeader
-
assign
public void assign(DataContainer<InstancePoint> other)
Obtains the stored variables from the other data point, but not the actual data points.- Specified by:
assignin interfaceDataContainer<InstancePoint>- Overrides:
assignin classAbstractDataContainer<InstancePoint>- Parameters:
other- the data point to get the values from
-
hasDatasetHeader
public boolean hasDatasetHeader()
Returns whether a header of a dataset is available.- Returns:
- true if a header is available
-
getDatasetHeader
public weka.core.Instances getDatasetHeader()
Returns the header of the underlying dataset.- Returns:
- the header, null if none currently set
-
set
public void set(weka.core.Instance inst)
Clears the container and adds the data from the weka.core.Instance (internal values).- Parameters:
inst- the instance to use
-
set
public void set(weka.core.Instance inst, int index, int[] additional, Range range, HashSet<Integer> attTypes)Clears the container and adds the data from the weka.core.Instance (internal values). Uses only the attributes specified in the range.- Parameters:
inst- the instance to useindex- the row index in the original dataset, use -1 to ignoreadditional- the indices of the additional attribute values to store in the reportrange- the range of attributes to limit the instance toattTypes- whether to restrict to attributes types, null or zero-length array means no restriction- See Also:
Attribute
-
hasReport
public boolean hasReport()
Checks whether a report is present.- Specified by:
hasReportin interfaceReportHandler<Report>- Returns:
- always true
-
setReport
public void setReport(Report value)
Sets a new report.- Specified by:
setReportin interfaceMutableReportHandler<Report>- Parameters:
value- the new report
-
getReport
public Report getReport()
Returns the report.- Specified by:
getReportin interfaceReportHandler<Report>- Returns:
- the report, can be null if none available
-
toDoubleArray
public double[] toDoubleArray()
Returns the y values as double array.- Returns:
- the y values
-
toInstance
public weka.core.Instance toInstance()
Generates a weka instance, if a dataset header is available.- Returns:
- the generated Instance, null if no header available
-
getNotes
public Notes getNotes()
Returns the currently stored notes.- Specified by:
getNotesin interfaceNotesHandler- Returns:
- the current notes
-
toSpreadSheet
public SpreadSheet toSpreadSheet()
Returns the content as spreadsheet.- Specified by:
toSpreadSheetin interfaceSpreadSheetSupporter- Returns:
- the content
-
-