Learn R Programming

bioRad (version 0.9.1)

attribute_table: Extract a volume coverage pattern table with all attributes

Description

Extract a volume coverage pattern table with all attributes

Usage

attribute_table(
  x,
  select = c("how.lowprf", "how.midprf", "how.highprf", "where.elangle", "where.nbins",
    "where.nrays", "where.rscale", "how.NI"),
  ...
)

Value

A data.frame with the attributes of the scan(s)

Arguments

x

Either a pvol or scan for which the table should be created.

select

A character vector which the column names that should be returned when NULL all attributes are to be returned

...

Currently not used

This function tabulates the attributes of one scan or all scans of a pvol. Attributes that have a length longer then one are presented as a list column. By default the function returns a limited set of columns to keep the output clear. It is important to note that attributes of the full polar volume can contain additional information on processing that is not included in the resulting table. This function only tabulates attributes of the scans.

Examples

Run this code
data(example_scan)
attribute_table(example_scan)

pvolfile <- system.file("extdata", "volume.h5", package = "bioRad")
example_pvol <- read_pvolfile(pvolfile)
attribute_table(example_pvol)

Run the code above in your browser using DataLab