View source: R/attribute_table.R
attribute_table | R Documentation |
Extract a volume coverage pattern table with all attributes
attribute_table(
x,
select = c("how.lowprf", "how.midprf", "how.highprf", "where.elangle", "where.nbins",
"where.nrays", "where.rscale", "how.NI"),
...
)
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. |
A data.frame with the attributes of the scan(s)
data(example_scan)
attribute_table(example_scan)
pvolfile <- system.file("extdata", "volume.h5", package = "bioRad")
example_pvol <- read_pvolfile(pvolfile)
attribute_table(example_pvol)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.