Skip to content

Commit f4b5818

Browse files
Replace all website references to https://docs.ropensci.org/excluder/
1 parent 3311581 commit f4b5818

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

_pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
url: https://jeffreyrstevens.github.io/excluder
1+
url: https://docs.ropensci.org/excluder/
22

33
reference:
44
- title: Check functions

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@
292292
}
293293
],
294294
"name": "{excluder}: Exclude rows to clean your data",
295-
"url": "https://jeffreyrstevens.github.io/excluder/"
295+
"url": "https://docs.ropensci.org/excluder/"
296296
}
297297
],
298298
"review": {

inst/CITATION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ citEntry(entry = "manual",
55
author = personList(as.person("Jeffrey R. Stevens")),
66
year = "2021",
77
notes = "R package version 0.3.1",
8-
url = "https://jeffreyrstevens.github.io/excluder/",
8+
url = "https://github.com/ropensci/excluder",
99
textVersion =
1010
paste("Stevens, J.R. (2021).",
1111
"excluder: Exclude rows to clean your data.",
1212
"R package version 0.3.1,",
13-
"https://jeffreyrstevens.github.io/excluder/.")
13+
"https://github.com/ropensci/excluder.")
1414
)

man/excluder-package.Rd

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/getting_started.Rmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ The verbs combine with the exclusion types to generate functions. For instance,
4646

4747
There are also helper functions:
4848

49-
1. [`unite_exclusions()`](https://jeffreyrstevens.github.io/excluder/reference/unite_exclusions.html) unites all of the columns marked by `mark` functions into a single column (each use of a `mark` function creates a new column).
50-
1. [`deidentify()`](https://jeffreyrstevens.github.io/excluder/reference/deidentify.html) removes standard Qualtrics columns with identifiable information.
51-
1. [`remove_label_rows()`](https://jeffreyrstevens.github.io/excluder/reference/remove_label_rows.html) removes the first two rows of labels and convert date and numeric columns in the metadata.
49+
1. [`unite_exclusions()`](https://docs.ropensci.org//excluder/reference/unite_exclusions.html) unites all of the columns marked by `mark` functions into a single column (each use of a `mark` function creates a new column).
50+
1. [`deidentify()`](https://docs.ropensci.org//excluder/reference/deidentify.html) removes standard Qualtrics columns with identifiable information.
51+
1. [`remove_label_rows()`](https://docs.ropensci.org//excluder/reference/remove_label_rows.html) removes the first two rows of labels and convert date and numeric columns in the metadata.
5252

5353
## Preparing your data
5454
If you use the [`fetch_survey()`](https://docs.ropensci.org/qualtRics/reference/fetch_survey.html) from the `{qualtRics}` package to import your Qualtrics data, it will automatically remove the first two label rows from the data set. However, if you directly download your data from Qualtrics, it will include two rows in your data set that include label information. This has two side effects: (1) there are non-data rows that need to be removed from your data set, and (2) all of your columns will be imported as character data types.
5555

56-
The [`remove_label_rows()`](https://jeffreyrstevens.github.io/excluder/reference/remove_label_rows.html) function will remove these two label rows. Also, by default, it will coerce the Qualtrics metadata columns from character types to the correct formats (e.g., _`StartDate`_ is coerced to a date, _`Progress`_ is coerced to numeric). So if you download your data from Qualtrics, you will need to run this function on your data before proceeding.
56+
The [`remove_label_rows()`](https://docs.ropensci.org//excluder/reference/remove_label_rows.html) function will remove these two label rows. Also, by default, it will coerce the Qualtrics metadata columns from character types to the correct formats (e.g., _`StartDate`_ is coerced to a date, _`Progress`_ is coerced to numeric). So if you download your data from Qualtrics, you will need to run this function on your data before proceeding.
5757

5858
```{r}
5959
dplyr::glimpse(qualtrics_raw)

0 commit comments

Comments
 (0)