Skip to content

Commit

Permalink
Add missing pipe operator to derive_vars
Browse files Browse the repository at this point in the history
  • Loading branch information
ldavies99 committed Nov 29, 2023
1 parent fe3700d commit 27f4950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/derive_vars.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
derive_vars <- function(data) {
data <- data %>%
derive_language_status() %>%
derive_rap_score()
derive_rap_score() %>%
derive_rap_champ_status()

return(data)
Expand Down

0 comments on commit 27f4950

Please sign in to comment.