Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
DominiqueMakowski committed Jul 4, 2024
1 parent bc3e4f1 commit 6013310
Show file tree
Hide file tree
Showing 2 changed files with 10,407 additions and 10,405 deletions.
8 changes: 5 additions & 3 deletions data/make_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ df <- rtdists::speed_acc |>
RT=rt,
Error=as.character(response) != as.character(stim_cat),
Frequency = str_remove_all(frequency, "nw_"),
Frequency = str_replace(frequency, "very_low", "Very Low"),
Frequency = str_replace(frequency, "low", "Low"),
Frequency = str_replace(frequency, "high", "High"),
Frequency = str_replace(Frequency, "very_low", "Very Low"),
Frequency = str_replace(Frequency, "low", "Low"),
Frequency = str_replace(Frequency, "high", "High"),
Condition = str_replace(Condition, "speed", "Speed"),
Condition = str_replace(Condition, "accuracy", "Accuracy"),
.keep = "none") |>
filter(Participant %in% c(1:6))

Expand Down
Loading

0 comments on commit 6013310

Please sign in to comment.