The main rems_to_aquachem()
function downloads EMS data and formats it for
use in the external program, AquaChem. However, occasionally you may wish
to work with this formatted EMS data in R. This function removes the extra
'units' row and then converts the columns to make the data usable in R.
Arguments
- d
Data frame output from
rems_to_aquachem()
Examples
if (FALSE) {
# Get and format one well for use in AquaChem
r <- rems_to_aquachem(ems_ids = "E289551", save = FALSE)
# Remove units and convert columns to appropriate formats for use in R
r <- units_remove(r)
}