get_numeric_data {Tplyr} | R Documentation |
Retrieve the numeric data from a tplyr objects
Description
get_numeric_data
provides access to the un-formatted numeric data for
each of the layers within a tplyr_table
, with options to allow you to
extract distinct layers and filter as desired.
Usage
get_numeric_data(x, layer = NULL, where = TRUE, ...)
Arguments
x |
A tplyr_table or tplyr_layer object |
layer |
Layer name or index to select out specifically |
where |
Subset criteria passed to dplyr::filter |
... |
Additional arguments to pass forward |
Details
When used on a tplyr_table
object, this method will aggregate the
numeric data from all Tplyr layers. The data will be returned to the user in
a list of data frames. If the data has already been processed (i.e.
build
has been run), the numeric data is already available and will be
returned without reprocessing. Otherwise, the numeric portion of the layer
will be processed.
Using the layer and where parameters, data for a specific layer can be extracted and subset. This is most clear when layers are given text names instead of using a layer index, but a numeric index works as well.
Value
Numeric data from the Tplyr layer
Examples
# Load in pipe
library(magrittr)
t <- tplyr_table(mtcars, gear) %>%
add_layer(name='drat',
group_desc(drat)
) %>%
add_layer(name='cyl',
group_count(cyl)
)
# Return a list of the numeric data frames
get_numeric_data(t)
# Get the data from a specific layer
get_numeric_data(t, layer='drat')
get_numeric_data(t, layer=1)
# Choose multiple layers by name or index
get_numeric_data(t, layer=c('cyl', 'drat'))
get_numeric_data(t, layer=c(2, 1))
# Get the data and filter it
get_numeric_data(t, layer='drat', where = gear==3)