wekakt / com.github.stevenlang.wekakt.extensions / weka.core.Instance
| Name | Summary |
|---|---|
| get | operator fun Instance.get(attributeIndex: Int): DoubleGet the attribute value at attributeIndex. operator fun Instance.get(attribute: Attribute): DoubleGet the attribute value for attribute. |
| isEqualTo | fun Instance.isEqualTo(other: Any?): BooleanCheck if this instance is equal to another instance object. |
| numAttributes | val Instance.numAttributes: IntNumber of attributes. |
| set | operator fun Instance.set(attributeIndex: Int, value: Number): Unitoperator fun Instance.set(attributeIndex: Int, value: String): UnitSet the attribute value at attributeIndex. operator fun Instance.set(attribute: Attribute, value: Number): Unitoperator fun Instance.set(attribute: Attribute, value: String): UnitSet the attribute value of attribute. |