
Process multiple Runsalt output files in a folder
Source:R/tidyRunsaltFolder.R
tidyRunsaltFolder.Rd
This function reads all Runsalt output files in a specified folder, processes them, and returns a combined tidy dataframe. It applies the tidyRunsalt logic to each file, handling potential errors, and then row-binds all results into a single dataframe.
Value
A tibble with columns:
Salt The type of salt
RH Relative Humidity (or the specified X_col)
mol Moles of salt (or the specified Y_col)
filename The name of the input file
Examples
if (FALSE) { # \dontrun{
result <- tidyRunsaltFolder("path/to/folder/with/runsalt/outputs")
head(result)
} # }