You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: cheatsheet.Rmd
+14-8
Original file line number
Diff line number
Diff line change
@@ -2,18 +2,18 @@
2
2
title: "Introduction to R for Biologists cheatsheet"
3
3
author: "Maria Doyle"
4
4
date: "`r format(Sys.time(), '%d %B %Y')`"
5
-
output:
5
+
output:
6
6
html_notebook:
7
7
toc: yes
8
-
toc_float: yes
9
8
toc_depth: 4
9
+
toc_float: yes
10
10
subtitle: glossary of vocabulary used in the course
11
11
---
12
12
13
13
## Packages
14
14
15
15
**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
17
17
18
18
**ggplot2**
19
19
tidyverse package for data visualisation
@@ -57,12 +57,15 @@ convert values to factor data type (from base R)
57
57
**`filter()`**
58
58
choose rows (from dplyr)
59
59
60
-
**`full_join()`**
60
+
**`full_join()`**
61
61
joins 2 tables returning all rows and all columns from both tables.
62
62
63
63
**`gather()`**
64
64
function that enables converting from wide to long (tidy) format (from dplyr)
65
65
66
+
**`getwd()`**
67
+
find out what the working directory is (get working directory)
68
+
66
69
**`ggplot()`**
67
70
function used to create a ggplot (from ggplot2)
68
71
@@ -96,6 +99,9 @@ read a comma-separated file into R (from readr)
96
99
**`read_tsv()`**
97
100
read a tab-separated file into R (from readr)
98
101
102
+
**`select()`**
103
+
choose columns (from dplyr)
104
+
99
105
**`str()`**
100
106
showing the structure of an object (from base R). Useful for checking data types.
101
107
@@ -113,7 +119,7 @@ invoke a spreadsheet-like viewer on an R object (from base R)
113
119
114
120
## Terms
115
121
116
-
**argument**
122
+
**argument**
117
123
an input to a function
118
124
119
125
**assignment operator**
@@ -128,7 +134,7 @@ a window where you can interactively type in commands and the output is returned
128
134
**double**
129
135
a data type in R, used to represent numbers containing a decimal point (integer is the data type for numbers without decimal point)
130
136
131
-
**factor**
137
+
**factor**
132
138
a data type in R, used to represent categories
133
139
134
140
**function**
@@ -140,7 +146,7 @@ type of ggplot e.g. `geom_line()`, `geom_point()`, `geom_jitter()`, `geom_boxplo
140
146
**object**
141
147
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.
142
148
143
-
**package**
149
+
**package**
144
150
a package is a collection of functions and usually includes code, documentation, tests and example datasets.
145
151
146
152
**pipe**
@@ -155,7 +161,7 @@ a text file containing commands, in R a script filename ends with .R
155
161
**themes**
156
162
the non-data components of a ggplot e.g. background, grid lines, font size and font type
157
163
158
-
**working directory**
164
+
**working directory**
159
165
the location (path) where R looks to read in data and save files
0 commit comments