View source: R/hdf5-functions.R
h5Class | R Documentation |
Functions to get or check the class of an HDF5 link.
h5Class(file, name)
is.H5D(file, name)
is.H5Group(file, name)
file |
An existing HDF5 file |
name |
Name of a link in |
h5Class
returns a character specifying the class of the query HDF5
link (typically H5D, H5Group or H5File).
is.H5D
and is.H5Group
return a logical value.
file <- system.file("extdata", "pbmc_small.h5ad", package = "hdf5r.Extra")
h5Class(file, "X")
h5Class(file, "obs")
is.H5D(file, "X")
is.H5Group(file, "obs")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.