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
Anything that is marked K046 transition soil from the jars (TCTN, soil pH, soil conductivity, total iron) is actually WETLAND. (i.e. wetland soil was sampled and put into a jar labeled "transition" incorrectly). Metadata stays the same and is accurate
please use the following code and comment in the script:
# switch wetland and transition names due to a...
# ...sampling error: wetland soil was sampled and put into a jar labeled "transition" incorrectly
df %>%
mutate(transect_location = case_when(kit_id == "K046" & transect_location == "transition" ~ "wetland",
kit_id == "K046" & transect_location == "wetland" ~ "transition",
TRUE ~ transect_location))
The text was updated successfully, but these errors were encountered:
stephpenn1
changed the title
K046 transition and wetland soil jar switched in data
SOIL - K046 transition and wetland soil jar switched in data
Sep 13, 2023
Anything that is marked K046 transition soil from the jars (TCTN, soil pH, soil conductivity, total iron) is actually WETLAND. (i.e. wetland soil was sampled and put into a jar labeled "transition" incorrectly). Metadata stays the same and is accurate
please use the following code and comment in the script:
The text was updated successfully, but these errors were encountered: