Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mschubert/r-h5store
R package for easy loading and saving of HDF5 objects
https://github.com/mschubert/r-h5store
Last synced: 11 days 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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-04-24T15:50:14.000Z (almost 10 years ago)
- Last Synced: 2023-03-13T18:12:50.480Z (almost 2 years ago)
- Language: R
- Homepage:
- Size: 207 KB
- Stars: 0
- Watchers: 4
- 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`.