https://github.com/mschubert/r-h5store
R package for easy loading and saving of HDF5 objects
https://github.com/mschubert/r-h5store
Last synced: over 1 year ago
JSON representation
R package for easy loading and saving of HDF5 objects
- Host: GitHub
- URL: https://github.com/mschubert/r-h5store
- Owner: mschubert
- Created: 2014-09-04T20:30:09.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2015-04-24T15:50:14.000Z (about 11 years ago)
- Last Synced: 2025-01-22T07:52:59.268Z (over 1 year ago)
- Language: R
- Homepage:
- Size: 207 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
h5store
=======
Store arbitrary lists of array-like objects as HDF5
objects. The library handles the dimension names.
Objects are saved in HDF5 groups of `value` with their actual content and
`names_<1..n>` for their dimension names. Upon loading they are restored in
their original state.
### Installation
The package requires a modified version of the rhdf5 library and devtools to
install package from Github.
```r
devtools::install_github("mschubert/rhdf5")
devtools::install_github("mschubert/r-h5store")
```
### Usage
`h5save(object, file_name)` saves an object the the file `file_name`.
`h5load(file_name, path)` loads an object from `file_name`, optionally only
subsetting `path`.