load("rcourse_lesson1_environment.RData")
Here is a look at our two data frames. First is the one we read in, the second is our subset of just the bilinguals’ data. # Figure Here’s a figure of the bilinguals compared to the monolinguals. # Data Here is a look at our two data frames. First is the one we read in, the second is our subset of just the bilinguals’ data.
load("rcourse_lesson1_environment.RData")
head(data12)
## oup type rt
## 1 monolingual <NA> 910.7722
## 2 monolingual <NA> 887.0629
## 3 monolingual <NA> 886.0760
## 4 monolingual <NA> 906.1512
## 5 monolingual <NA> 897.7662
## 6 monolingual <NA> 896.8191
head(data_bl)
## oup type rt
## 1 bilingual high 931.8969
## 2 bilingual high 953.4020
## 3 bilingual high 934.2860
## 4 bilingual high 961.9091
## 5 bilingual high 960.9247
## 6 bilingual high 950.0086
Here’s a figure of the bilinguals compared to the monolinguals.
data.plot