raw_data_1(file = NULL, package = "insert_package_name")
(optional) a character
object indicating the raw data file
name(s). If NULL
, all raw data file names will be returned (default:
NULL
).
(optional) a string indicating the target package. If not
assigned, the function will try to use the name of the active project
directory (requires the rstudioapi
package).
If file == NULL
, a character
object with all file
names available. Else, a string with the file name path.
Other R system functions:
raw_data_2()
,
update_pkg_versions()
if (FALSE) { # \dontrun{
## To list all raw data file names available
raw_data_1()
## To get the file path from a specific raw data
raw_data_1(raw_data()[1])} # }