Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
R 0.77 KB | None | 0 0
  1. ```{r}
  2. output[which(output$StudyNum == 2 & output$trial == 0),]$group <- 10
  3. output[which(output$StudyNum == 3 & output$trial == 0),]$group <- 10
  4.  
  5. output[which(output$StudyNum == 3 & output$group == 10 & output$condition == "Synchronous"),]$trial <- 1
  6. output[which(output$StudyNum == 3 & output$group == 10 & output$condition == "Conversation"),]$trial <- 2
  7. output[which(output$StudyNum == 3 & output$group == 10 & output$condition == "TurnTaking"),]$trial <- 3
  8.  
  9. output[which(output$StudyNum == 2 & output$group == 10 & output$condition == "Conversation"),]$trial <- 1
  10. output[which(output$StudyNum == 2 & output$group == 10 & output$condition == "TurnTaking"),]$trial <- 2
  11. output[which(output$StudyNum == 2 & output$group == 10 & output$condition == "Synchronous"),]$trial <- 3
  12. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement