From d671b9e81306a4e0e42d8c435eab7e5d3464865d Mon Sep 17 00:00:00 2001 From: cristinamullin Date: Mon, 9 Jan 2023 13:06:11 -0500 Subject: [PATCH] update docs --- docs/articles/WQPDataHarmonization.html | 8 ++++---- docs/pkgdown.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/articles/WQPDataHarmonization.html b/docs/articles/WQPDataHarmonization.html index 0861659d6..da8bd3b4d 100644 --- a/docs/articles/WQPDataHarmonization.html +++ b/docs/articles/WQPDataHarmonization.html @@ -795,7 +795,7 @@

Filter data by field
-TADAProfileClean14 <- dplyr::filter(TADAProfileClean13, !(ActivityTypeCode %in% c("Quality Control Sample-Field Replicate", "Quality Control Sample-Field Blank", "Quality Control Sample-Lab Duplicate", "Quality Control Sample-Equipment Blank")))
+TADAProfileClean14 <- dplyr::filter(TADAProfileClean13, !(ActivityTypeCode %in% c("Quality Control Sample-Field Replicate", "Quality Control Sample-Field Blank", "Quality Control Sample-Lab Duplicate", "Quality Control Sample-Equipment Blank")))

We’ve completed our review of the ActivityTypeCode field.

Let’s move on to a different field and see if there are any values that we want to remove – we’ll look at the values in the @@ -811,7 +811,7 @@

Filter data by field
-TADAProfileClean15 <- dplyr::filter(TADAProfileClean14, !(ActivityMediaSubdivisionName %in% c("Groundwater", "Bulk deposition")))
+TADAProfileClean15 <- dplyr::filter(TADAProfileClean14, !(ActivityMediaSubdivisionName %in% c("Groundwater", "Bulk deposition")))

Filter data by field, subset by parameter @@ -875,7 +875,7 @@

Filter data by field, subset b specify that we want to remove rows where the CharacteristicName is “NITROGEN” and the HydrologicEvent field is “Storm.”

-TADAProfileClean16 <- dplyr::filter(TADAProfileClean15, !(CharacteristicName %in% "NITROGEN" & HydrologicEvent %in% "Storm"))
+TADAProfileClean16 <- dplyr::filter(TADAProfileClean15, !(CharacteristicName %in% "NITROGEN" & HydrologicEvent %in% "Storm"))

Transform Characteristic, Speciation, and Unit values to TADA @@ -932,7 +932,7 @@

T
 #How to point to a column in R: yourdataset$thecolumnyouwant
 #E.g., temp$ResultMeasureValueNitrogenExample <- filter(TADAProfileClean17, CharacteristicName == "NITROGEN")
-SingleCharacteristic <- filter(TADAProfileClean17, CharacteristicName == "TOTAL NITROGEN, MIXED FORMS")
+SingleCharacteristic <- filter(TADAProfileClean17, CharacteristicName == "TOTAL NITROGEN, MIXED FORMS")
 
 #Review the types of nondetects you have
 table(SingleCharacteristic$ResultDetectionConditionText)
diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml
index 9a9b8f0eb..13a67fa66 100644
--- a/docs/pkgdown.yml
+++ b/docs/pkgdown.yml
@@ -4,7 +4,7 @@ pkgdown_sha: ~
 articles:
   CONTRIBUTING: CONTRIBUTING.html
   WQPDataHarmonization: WQPDataHarmonization.html
-last_built: 2023-01-09T15:39Z
+last_built: 2023-01-09T17:42Z
 urls:
   reference: usepa.github.io/TADA/reference
   article: usepa.github.io/TADA/articles