Skip to content

Commit

Permalink
style: rename function to more accurate description
Browse files Browse the repository at this point in the history
  • Loading branch information
lwjohnst86 committed Feb 23, 2024
1 parent 8b190bb commit 28480af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/extract-participant-overview.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#'
extract_participant_overview <- function(data) {
data |>
sanitize_precourse() |>
anonymize_precourse() |>
dplyr::select(
course_version,
tidyselect::starts_with("perceived"),
Expand Down Expand Up @@ -60,7 +60,7 @@ extract_precourse_feedback <- function(data, column_renaming_df) {
dplyr::relocate(course_version, questions, responses)
}

sanitize_precourse <- function(data) {
anonymize_precourse <- function(data) {
data |>
dplyr::select(
-tidyselect::contains("email"),
Expand Down

0 comments on commit 28480af

Please sign in to comment.