The RSA
If you weren’t able to install software, let one of the IT team members know
Eirini Zormpa, Quantitative Researcher
Tell us in the chat!
R is both a programming language and the software used to interpret it. It is free and open source. ❌ 💰 = 🎉
There are helpers in person and online. If your code doesn’t work, they’re here to help you 💪:
File
menu, click on New project
New directory
> New project
r-workshop
. Make sure your name doesn’t have spaces or special characters!Browse
and navigate to a suitable location for this repository and click on Open
when you are in a location you are happy with.Create project
.Below you see two ways of reading data into R. They both work and they both access the same file.
Which one looks more reproducible?:
Option 2 is more reproducible, as it allows you to move your project around on your computer and share it with others without having to directly modify file paths in the individual scripts.
It is good practice to keep all files related to a project in a single folder, called the working directory
. This includes data, scripts, outputs, and documentation.
This makes sharing and documenting your projects much easier.
flowchart TB A[working-directory] --> B["data_raw/"] A[working-directory] --> C["data_processed/"] A[working-directory] --> D["figures/"] A[working-directory] --> E([LICENCE.md]) A[working-directory] --> F([paper.qmd]) A[working-directory] --> G([README.md]) A[working-directory] --> H["scripts/"]
⏰ 5 mins
05:00
Create two variables income
and expenses
and assign them values. Create a third variable profit
and give it a value based on the current values of income
and expenses
Show that changing the values of either income
or expenses
does not affect the value of profit
TRUE
and FALSE
, integer for integer numbers and two others we won’t discuss (complex and raw).⏰ 10 mins
10:00
What will happen in each of these examples?
Hint: use typeof()
to check the data type of your objects
[1] "character"
[1] "double"
[1] "character"
[1] "character"
Vectors can be of only one data type. R tries to convert (coerce) the content of this vector to find a “common denominator” that doesn’t lose any information.
⏰ 10 mins
10:00
NA
s removed.median()
to calculate the median of the bedrooms
vector.So far you have learned how to:
objects
and vectors
.When we say R is a language, we mean just that: We need to learn a new way of communicating that lets us talk to the R software.
Software isn’t as smart as humans and have no tolerance for errors: if we don’t tell it what we do just the way it wants, it won’t work.
Learning how to speak the software’s language takes time and practice, but we’re here to help you 💪✨