DataCubeIO extension
Extension providing I/O operations for DataCube.
- on
Methods
-
toBinaryFile(
String path) → Future< void> -
Available on DataCube, provided by the DataCubeIO extension
Exports the DataCube to a binary format. -
toCSVDirectory(
String dirPath) → Future< void> -
Available on DataCube, provided by the DataCubeIO extension
Saves the DataCube to a directory of CSV files. -
toFile(
String path) → Future< void> -
Available on DataCube, provided by the DataCubeIO extension
Saves the DataCube to a JSON file.
Static Methods
-
fromBinaryFile(
String path) → Future< DataCube> -
Available on DataCube, provided by the DataCubeIO extension
Loads a DataCube from a binary file. -
fromCSVDirectory(
String dirPath) → Future< DataCube> -
Available on DataCube, provided by the DataCubeIO extension
Loads a DataCube from a directory of CSV files. -
fromFile(
String path) → Future< DataCube> -
Available on DataCube, provided by the DataCubeIO extension
Loads a DataCube from a JSON file.