public class ArffExecution
extends java.lang.Object
| Constructor and Description | 
|---|
ArffExecution(double[][] attributes)
To use it, instantiate the class by passing a list of function values Objective 
 | 
ArffExecution(double[][] attributes,
             double[] classes,
             java.lang.String[] descOjectives)
To use it, instantiate the class by passing a list of function values Objective and descriptions for the same 
 | 
ArffExecution(double[][] attributes,
             double[] classes,
             java.lang.String[] descOjectives,
             boolean binary)
To use it, instantiate the class by passing a list of function values Objective and descriptions for the same 
 | 
| Modifier and Type | Method and Description | 
|---|---|
double[][] | 
getAttributes()  | 
int | 
getAttrIndices()  | 
weka.core.FastVector | 
getAtts()  | 
weka.core.FastVector | 
getAttVals()  | 
weka.core.Instances | 
getData()  | 
weka.core.Instances | 
getDataWithoutClass()
Used to get Instances withod last column that indentify the class of object 
 | 
double[] | 
getVals()  | 
void | 
setAttributes(double[][] attributes)  | 
void | 
setAttrIndices(int attrIndices)  | 
void | 
setAtts(weka.core.FastVector atts)  | 
void | 
setAttVals(weka.core.FastVector attVals)  | 
void | 
setData(weka.core.Instances data)  | 
void | 
setVals(double[] vals)  | 
java.lang.String | 
toString()  | 
public ArffExecution(double[][] attributes)
attributes - Function Values Objectivepublic ArffExecution(double[][] attributes,
                     double[] classes,
                     java.lang.String[] descOjectives)
attributes - Function Values ObjectivedescOjectives - Objectives Descriptionpublic ArffExecution(double[][] attributes,
                     double[] classes,
                     java.lang.String[] descOjectives,
                     boolean binary)
attributes - Function Values ObjectivedescOjectives - Objectives Descriptionpublic weka.core.FastVector getAtts()
public void setAtts(weka.core.FastVector atts)
public weka.core.FastVector getAttVals()
public void setAttVals(weka.core.FastVector attVals)
public weka.core.Instances getData()
public void setData(weka.core.Instances data)
public double[] getVals()
public void setVals(double[] vals)
public java.lang.String toString()
toString in class java.lang.Objectpublic int getAttrIndices()
public void setAttrIndices(int attrIndices)
public double[][] getAttributes()
public void setAttributes(double[][] attributes)
public weka.core.Instances getDataWithoutClass()