diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index ead1b5a..4af5c92 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -5,5 +5,5 @@ articles: DRR_Purpose_and_Scope: DRR_Purpose_and_Scope.html Starting-a-DRR: Starting-a-DRR.html Using-the-DRR-Template: Using-the-DRR-Template.html -last_built: 2024-05-09T03:08Z +last_built: 2024-05-09T03:30Z diff --git a/docs/reference/replace_blanks.html b/docs/reference/replace_blanks.html index 410cb31..d92266c 100644 --- a/docs/reference/replace_blanks.html +++ b/docs/reference/replace_blanks.html @@ -106,18 +106,17 @@

Details

Examples

-
 # \donttest{
+    
 if (FALSE) {
 #replaces all blank cells in .csvs in the current directory with NA:
  replace_blanks()
 
 #replace all blank cells in .csvs in the directory ./test_data with "NODATA"
  dir <- here::here("test_data")
  replace_blanks(directory = dir, missing_val_code = "NODATA")
-#> Warning: cannot create file 'C:/Users/rlbaker/Documents/RDev/QCkit_devspace/test_data/NA.csv', reason 'No such file or directory'
 
 #replace all blank cells in .csvs in the current directory with -99999
 replace_blanks(missing_val_code = -99999)
-# }
+}
 
diff --git a/man/replace_blanks.Rd b/man/replace_blanks.Rd index d94b397..b331ff6 100644 --- a/man/replace_blanks.Rd +++ b/man/replace_blanks.Rd @@ -34,7 +34,7 @@ data in any of the cells). In this case, the blanks will not be replaced with NA (as the function cannot determine how many NAs to include). } \examples{ - \donttest{ + \dontrun{ #replaces all blank cells in .csvs in the current directory with NA: replace_blanks()