Package | Description |
---|---|
pl.poznan.put.cs.idss.jrs.core |
Contains base classes and interfaces common for whole data management module.
|
pl.poznan.put.cs.idss.jrs.core.mem |
Implements decision table stored in memory with random and serial access.
|
Modifier and Type | Method | Description |
---|---|---|
static MemoryContainer |
InstancesConverter.convertInstancesToMemoryContainer(weka.core.Instances instances) |
Method converting given weka's Instances object to JRS MemoryContainer.
|
Example |
RandomAccess.insertExample(int index,
Example example) |
This method should copy an example to given position.
|
void |
RandomAccess.setExample(int index,
Example example) |
It copies all fields' values from given example into the one
at specified row.
|
Modifier and Type | Method | Description |
---|---|---|
Example |
MemoryContainer.addExample(Example example) |
Makes new row at the end of the table and fills its fields by taking
values from given example.
|
Example |
MemoryContainer.insertExample(int index,
Example example) |
Inserts new row to decision table with fields taken from given example.
|
void |
MemoryContainer.setAttributes(Attribute[] attributes) |
Sets the first row of the table - attributes.
|
void |
MemoryContainer.setExample(int index,
Example example) |
Sets new example instead of one at given position.
|