Select variables and filter data
Select variables and filter data
get_data(dataset, vars = "", filt = "", rows = NULL, na.rm = TRUE, envir = c())
dataset |
Dataset or name of the data.frame |
vars |
Variables to extract from the data.frame |
filt |
Filter to apply to the specified dataset |
rows |
Select rows in the specified dataset |
na.rm |
Remove rows with missing values (default is TRUE) |
envir |
Environment to extract data from |
Function is used in radiant to select variables and filter data based on user input in string form
Data.frame with specified columns and rows
get_data(mtcars, vars = "cyl:vs", filt = "mpg > 25") get_data(mtcars, vars = c("mpg", "cyl"), rows = 1:10)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.