dtab.explore {radiant.data} | R Documentation |
Make an interactive table of summary statistics
Description
Make an interactive table of summary statistics
Usage
## S3 method for class 'explore'
dtab(
object,
dec = 3,
searchCols = NULL,
order = NULL,
pageLength = NULL,
caption = NULL,
...
)
Arguments
object |
Return value from |
dec |
Number of decimals to show |
searchCols |
Column search and filter |
order |
Column sorting |
pageLength |
Page length |
caption |
Table caption |
... |
further arguments passed to or from other methods |
Details
See https://radiant-rstats.github.io/docs/data/explore.html for an example in Radiant
See Also
pivotr
to create a pivot table
summary.pivotr
to show summaries
Examples
## Not run:
tab <- explore(diamonds, "price:x") %>% dtab()
tab <- explore(diamonds, "price", byvar = "cut", fun = c("n_obs", "skew"), top = "byvar") %>%
dtab()
## End(Not run)
[Package radiant.data version 1.6.6 Index]