| h5_str | R Documentation |
Recursively prints a summary of an HDF5 group or dataset, similar to
the structure of h5ls -r. It displays the nested structure, object types,
dimensions, and attributes.
h5_str(file, name = "/", attrs = TRUE, members = TRUE, markup = interactive())
file |
The path to the HDF5 file. |
name |
The name of the group or dataset to display. Defaults to the root group "/". |
attrs |
Set to |
members |
Set to |
markup |
Set to |
This function provides a quick and convenient way to inspect the contents of an HDF5 file. It performs a recursive traversal of the file from the C-level and prints a formatted summary to the R console.
This function does not read any data into R. It only inspects the metadata (names, types, dimensions) of the objects in the file, making it fast and memory-safe for arbitrarily large files.
This function is called for its side-effect of printing to the
console and returns NULL invisibly.
h5_ls(), h5_attr_names()
file <- tempfile(fileext = ".h5")
h5_write(list(x = 1:10, y = matrix(1:9, 3, 3)), file, "group")
h5_write("metadata", file, "group", attr = "info")
# Print structure
h5_str(file)
unlink(file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.