COMPASS-DOE / EXCHANGE

Exploration of Coastal Hydrobiogeochemistry Across a Network of Gradients and Experiments (EXCHANGE)
MIT License
3 stars 0 forks source link

SOIL - K046 transition and wetland soil jar switched in data #60

Open stephpenn1 opened 1 year ago

stephpenn1 commented 1 year ago

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)) 
stephpenn1 commented 1 year ago

Check off when fixed and uploaded: