Skip to content

Commit bf4414a

Browse files
committed
Update cheatsheet
1 parent 28c6666 commit bf4414a

File tree

2 files changed

+32
-17
lines changed

2 files changed

+32
-17
lines changed

cheatsheet.Rmd

+14-8
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
title: "Introduction to R for Biologists cheatsheet"
33
author: "Maria Doyle"
44
date: "`r format(Sys.time(), '%d %B %Y')`"
5-
output:
5+
output:
66
html_notebook:
77
toc: yes
8-
toc_float: yes
98
toc_depth: 4
9+
toc_float: yes
1010
subtitle: glossary of vocabulary used in the course
1111
---
1212

1313
## Packages
1414

1515
**dplyr**
16-
tidyverse package for manipulating data, contains the `mutate()` and `filter()` functions and the `%>%` operator
16+
tidyverse package for manipulating data, contains the `mutate()`, `filter()`, `select()`, `full_join()` functions and the `%>%` operator
1717

1818
**ggplot2**
1919
tidyverse package for data visualisation
@@ -57,12 +57,15 @@ convert values to factor data type (from base R)
5757
**`filter()`**
5858
choose rows (from dplyr)
5959

60-
**`full_join()`**
60+
**`full_join()`**
6161
joins 2 tables returning all rows and all columns from both tables.
6262

6363
**`gather()`**
6464
function that enables converting from wide to long (tidy) format (from dplyr)
6565

66+
**`getwd()`**
67+
find out what the working directory is (get working directory)
68+
6669
**`ggplot()`**
6770
function used to create a ggplot (from ggplot2)
6871

@@ -96,6 +99,9 @@ read a comma-separated file into R (from readr)
9699
**`read_tsv()`**
97100
read a tab-separated file into R (from readr)
98101

102+
**`select()`**
103+
choose columns (from dplyr)
104+
99105
**`str()`**
100106
showing the structure of an object (from base R). Useful for checking data types.
101107

@@ -113,7 +119,7 @@ invoke a spreadsheet-like viewer on an R object (from base R)
113119

114120
## Terms
115121

116-
**argument**
122+
**argument**
117123
an input to a function
118124

119125
**assignment operator**
@@ -128,7 +134,7 @@ a window where you can interactively type in commands and the output is returned
128134
**double**
129135
a data type in R, used to represent numbers containing a decimal point (integer is the data type for numbers without decimal point)
130136

131-
**factor**
137+
**factor**
132138
a data type in R, used to represent categories
133139

134140
**function**
@@ -140,7 +146,7 @@ type of ggplot e.g. `geom_line()`, `geom_point()`, `geom_jitter()`, `geom_boxplo
140146
**object**
141147
everything in R is an object. The assignment operator `<-` can be used to create objects. Note that what R calls objects are called variables in other languages such as Python.
142148

143-
**package**
149+
**package**
144150
a package is a collection of functions and usually includes code, documentation, tests and example datasets.
145151

146152
**pipe**
@@ -155,7 +161,7 @@ a text file containing commands, in R a script filename ends with .R
155161
**themes**
156162
the non-data components of a ggplot e.g. background, grid lines, font size and font type
157163

158-
**working directory**
164+
**working directory**
159165
the location (path) where R looks to read in data and save files
160166

161167
\

0 commit comments

Comments
 (0)