Download and install The Software Package R. The latest vesion is currently 4.3.x
( September 2023).
Also download and install RStudio
\(~\)
Set your default browser to Google Chrome. This is necessary in order to display the Emu web application from R.
\(~\)
Create a directory on your hard drive to be used on this course. Here I have created one on my desktop called ipsR
- but any directory name is fine.
\(~\)
by clicking the Rstudio icon
\(~\)
Choose the directory that you just created under step 1. See the figure below:
You only need to create the project once. When you startup Rstudio the next time, the system should automatically open up inside this project that you created. If not, or if you closed the project, you can open it again:
You can get back to your default directory (if you were using R before then) any time by selecting close project in the above menu.
In the Rstudio console window, install the following following (takes a few minutes). You only need to do this once:
install.packages(c("Rcpp", "remotes", "knitr",
"tidyverse", "magrittr",
"rmarkdown", "emuR", "gridExtra", "emmeans",
"broom", "lmerTest", "pbkrtest", "MuMIn", "wrassp"))
More information: Installation of R Packets
Should the above result in the error message installation of package had non-zero exit status
, then it means that installation has failed. For Windows, you might then additionally have to install Rtools. Für MacOS you might need to install/reset the XCode command-line tools. For this purpose, open a Mac terminal window and execute the following:
Load the tidyverse()
, emuR()
, and wrassp()
libraries.
While some base packages are automatically opened when you start up Rstudio, most have to be loaded first using the library()
function. This includes the two packages that will be needed right from the beginning of the course:
Verify that everything works by entering the following commands to the console.
# download a demo database
create_emuRdemoData(dir = tempdir())
# load it
ae = load_emuDB(file.path(tempdir(), "emuR_demoData", "ae_emuDB"))
# look at it
serve(ae, useViewer=F)
# close the browser window to carry on
The third command serve(ae, useViewer=F)
should produce the following image in your browser
Either Session > Quit Session
in the main Rstudio toolbar or
You will then be asked whether you want to save the workspace image.
For this course, please never save the workspace i.e. (Don't save
)
A basic knowledge in R is a prerequisite for this course. If you are unfamiliar with R then please start by working through these two sources:
There is a very large and helpful R community that will make learning R easier for you. Here are a few useful links and commands in case you get stuck:
Stack Overflow: A blog where you can often find an answer to your questions about R. The easiest way is to google your question in English; a stack overflow member’s answer will be included in the first search results.
Hadley Wickham’s “R for Data Science”: Hadley Wickham is the chief programmer of “tidyverse”. His books are very readable, well structured, and entertaining.
Chatsheets: those are pdfs that provide an overview of functions with explanations and examples in a very compact form. You will find some cheatsheets in the main toolbar viaHelp > Cheatsheets
. The first three are especially useful. You can also find cheatsheets by googling see e.g. Data Transformation with dplyr or this very comprehensive Reference Card.
Vignettes: For some packages there are so-called “vignettes”, which are mostly HTMLs or PDFs that have been written by the package’s authors. You can search for vignettes using the following input to the console:
Help
toolbar. You’ll then get information about the function’s arguments and often some examples. You can also get help via the console, as follows ( e.g. here for getwd()
):ggplot2
is both a well-known and popular program for creating plots. There’s plenty of help available for ggplot2
from the R community. Here are some useful links for creating graphics:
The chapter Data Visualisation in Hadley Wickham’s “R for Data Science”
If you need more information using statistics in R, the following are recommended:
Bodo Winter’s “Statistics for Linguists: An Introduction using R”: A recent book with excellent explanations to all major themes in inferential statistics. It’s available online via the LMU library.
Stefan Gries’ “Statistics for Linguistics with R: A Practical Introduction”: Useful for decision makng about which model to use for which type of question. Although the code is a bit of data (given that the book was published in 2009) the statistical content is still up-to-date. Also online via the LMU library.
Harald Baayen’s “Analyzing Linguistic Data: A Practical Introduction to Statistics”: Einführung für eher Fortgeschrittene. Although the R code is a bit out of data, the explanations and examples of statistics foundations are very helpful. Available as a hard copy from the LMU library.