leppott / ContDataQC

Quality control checks on continuous data. Example data is from a HOBO data logger with 30 minute intervals.
https://leppott.github.io/ContDataQC/
MIT License
20 stars 10 forks source link

formatHobo - add example for list.file #90

Open leppott opened 5 years ago

leppott commented 5 years ago

Is your feature request related to a problem? Please describe. Rather than list out files use list.files() to get all files in directory.

Describe the solution you'd like Example below.

path <- paste0(wd, "/", "Data0_Original")

# Function Inputs
myFiles <- list.files(path, "(.csv)")

Describe alternatives you've considered NA

Additional context Add to example for the function so users can see an alternative to listing out each file.