|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectweka.core.json.JSONInstances
public class JSONInstances
Class for transforming Instances objects into JSON objects and vice versa. Missing values get stored as "?".
MISSING_VALUE| Field Summary | |
|---|---|
static String |
ATTRIBUTES
the attributes object. |
static String |
CLASS
the class attribute indicator. |
static String |
DATA
the data section. |
static String |
DATEFORMAT
the dateformat attribute. |
static String |
HEADER
the header section. |
static String |
LABELS
the labels attribute. |
static String |
MISSING_VALUE
the missing value indicator. |
static String |
NAME
the name attribute. |
static String |
RELATION
the relation name. |
static String |
SPARSE
the sparse attribute. |
static String |
SPARSE_SEPARATOR
the separator for index/value in case of sparse instances. |
static String |
TYPE
the type attribute. |
static String |
VALUES
the values attribute. |
static String |
WEIGHT
the weight attribute. |
| Constructor Summary | |
|---|---|
JSONInstances()
|
|
| Method Summary | |
|---|---|
static void |
main(String[] args)
For testing only. |
static Instances |
toHeader(JSONNode json)
Turns a JSON object, if possible, into an Instances object (only header). |
static Instances |
toInstances(JSONNode json)
Turns a JSON object, if possible, into an Instances object. |
static JSONNode |
toJSON(Instances inst)
Turns the Instances object into a JSON object. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final String HEADER
public static final String DATA
public static final String RELATION
public static final String ATTRIBUTES
public static final String NAME
public static final String TYPE
public static final String CLASS
public static final String LABELS
public static final String WEIGHT
public static final String DATEFORMAT
public static final String SPARSE
public static final String VALUES
public static final String SPARSE_SEPARATOR
public static final String MISSING_VALUE
| Constructor Detail |
|---|
public JSONInstances()
| Method Detail |
|---|
public static Instances toInstances(JSONNode json)
json - the JSON object to convert
public static Instances toHeader(JSONNode json)
json - the JSON object to convert
public static JSONNode toJSON(Instances inst)
inst - the Instances to turn into a JSON object
public static void main(String[] args)
throws Exception
args - expects a dataset as first parameter
Exception - if something goes wrong
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||