H5-dataset-info | R Documentation |
Functions to get the information from an HDF5 dataset.
h5Dims(x, ...)
h5MaxDims(x, ...)
## S3 method for class 'H5D'
h5Dims(x, ...)
## S3 method for class 'H5Group'
h5Dims(x, name, ...)
## S3 method for class 'H5File'
h5Dims(x, name, ...)
## S3 method for class 'character'
h5Dims(x, name, ...)
## S3 method for class 'H5D'
h5MaxDims(x, ...)
## S3 method for class 'H5D'
h5MaxDims(x, ...)
## S3 method for class 'H5Group'
h5MaxDims(x, name, ...)
## S3 method for class 'H5File'
h5MaxDims(x, name, ...)
## S3 method for class 'character'
h5MaxDims(x, name, ...)
x |
An |
... |
Arguments passed to other methods. |
name |
A link in |
h5Dims
returns the dimension of the HDF5 dataset.
h5MaxDims
returns the maximal dimension of the HDF5 dataset.
H5D-class
file <- system.file("extdata", "pbmc_small.h5ad", package = "hdf5r.Extra")
h5obj <- h5Open(file, "X", mode = "r")
h5Dims(file, "X")
h5Dims(h5obj)
h5MaxDims(file, "X")
h5MaxDims(h5obj)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.