Skip to content

Instantly share code, notes, and snippets.

@hardingnj
Created July 10, 2014 15:18
Show Gist options
  • Save hardingnj/7131312d2bce7465822a to your computer and use it in GitHub Desktop.
Save hardingnj/7131312d2bce7465822a to your computer and use it in GitHub Desktop.
#! /usr/bin/R
library(rhdf5)
print(h5ls('gzip.h5'));
test_limits <- seq(1e3, 1e6, 1e3)
for(limit in test_limits) {
print(limit)
dat_gzip <- h5read('gzip.h5', "DS1/", index = list(1:20,1:limit));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment