Uses of Class
smile.data.Datum
-
Packages that use Datum Package Description smile.data -
-
Uses of Datum in smile.data
Subclasses of Datum in smile.data Modifier and Type Class Description class
AttributeDataset.Row
Fields in smile.data with type parameters of type Datum Modifier and Type Field Description protected java.util.List<Datum<E>>
Dataset. data
The data objects.Methods in smile.data that return Datum Modifier and Type Method Description Datum<double[]>
AttributeDataset. add(Datum<double[]> x)
Datum<E>
Dataset. add(E x)
Add a datum item into the dataset.Datum<E>
Dataset. add(E x, double y)
Add a datum item into the dataset.Datum<E>
Dataset. add(E x, double y, double weight)
Add a datum item into the dataset.Datum<E>
Dataset. add(E x, int y)
Add a datum item into the dataset.Datum<E>
Dataset. add(E x, int y, double weight)
Add a datum item into the dataset.Datum<E>
Dataset. add(Datum<E> x)
Add a datum item into the dataset.Datum<E>
Dataset. get(int i)
Returns the element at the specified position in this dataset.Datum<E>
Dataset. remove(int i)
Removes the element at the specified position in this dataset.Methods in smile.data that return types with arguments of type Datum Modifier and Type Method Description java.util.List<Datum<E>>
Dataset. data()
Returns the data set.java.util.Iterator<Datum<E>>
Dataset. iterator()
Returns an iterator over the elements in this dataset in proper sequence.Methods in smile.data with parameters of type Datum Modifier and Type Method Description Datum<double[]>
AttributeDataset. add(Datum<double[]> x)
Datum<E>
Dataset. add(Datum<E> x)
Add a datum item into the dataset.
-