You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since NETN (and others) collect data across depths a sample depth data field needs to be added into the data object created by the importNCRNwater function. NETN can create its own function to do so or args to select on line 51 can be updated to pass the correct fields from imported data.
E.g., lines 50-51 from importNCRNwater following pmap():
Since NETN (and others) collect data across depths a sample depth data field needs to be added into the data object created by the
importNCRNwater
function. NETN can create its own function to do so or args toselect
on line 51 can be updated to pass the correct fields from imported data.E.g., lines 50-51 from
importNCRNwater
followingpmap
():dplyr::filter(Indata, SiteCode == !!SiteCode, Characteristic == DataName) %>% dplyr::select(Date, Value, TextValue, MQL, UQL, Censored, ValueCen)})
to
dplyr::filter(Indata, SiteCode == !!SiteCode, Characteristic == DataName) %>% dplyr::select(-cols we don't want)}
The text was updated successfully, but these errors were encountered: