view_data {radiant.data} | R Documentation |
View data in a shiny-app
Description
View data in a shiny-app
Usage
view_data(
dataset,
vars = "",
filt = "",
arr = "",
rows = NULL,
na.rm = FALSE,
dec = 3,
envir = parent.frame()
)
Arguments
dataset |
Data.frame or name of the dataframe to view |
vars |
Variables to show (default is all) |
filt |
Filter to apply to the specified dataset |
arr |
Expression to arrange (sort) data |
rows |
Select rows in the specified dataset |
na.rm |
Remove rows with missing values (default is FALSE) |
dec |
Number of decimals to show |
envir |
Environment to extract data from |
Details
View, search, sort, etc. your data
See Also
See get_data
and filter_data
Examples
## Not run:
view_data(mtcars)
## End(Not run)
[Package radiant.data version 1.6.6 Index]