Class DataAnalysis
- java.lang.Object
-
- org.datavec.api.transform.analysis.DataAnalysis
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SequenceDataAnalysis
public class DataAnalysis extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedDataAnalysis()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataAnalysisfromJson(String json)Deserialize a JSON DataAnalysis String that was previously serialized withtoJson()static DataAnalysisfromYaml(String yaml)Deserialize a YAML DataAnalysis String that was previously serialized withtoYaml()ColumnAnalysisgetColumnAnalysis(String column)StringtoJson()Convert the DataAnalysis object to JSON formatStringtoString()StringtoYaml()Convert the DataAnalysis object to YAML format
-
-
-
Method Detail
-
getColumnAnalysis
public ColumnAnalysis getColumnAnalysis(String column)
-
toJson
public String toJson()
Convert the DataAnalysis object to JSON format
-
toYaml
public String toYaml()
Convert the DataAnalysis object to YAML format
-
fromJson
public static DataAnalysis fromJson(String json)
Deserialize a JSON DataAnalysis String that was previously serialized withtoJson()
-
fromYaml
public static DataAnalysis fromYaml(String yaml)
Deserialize a YAML DataAnalysis String that was previously serialized withtoYaml()
-
-