Get data for analysis functions
getdata(dataset, vars = "", filt = "", rows = NULL, na.rm = TRUE)
Name of the dataframe
Variables to extract from the dataframe
Filter to apply to the specified dataset. For example "price > 10000" if dataset is "diamonds" (default is "")
Select rows in the specified dataset. For example "1:10" for the first 10 rows or "n()-10:n()" for the last 10 rows (default is NULL)
Remove rows with missing values (default is TRUE)
Data.frame with specified columns and rows