Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Give this quiz to my class
Q 1/32
Score 0
You can’t tackle big data unless you have experience with small data.
30
True
False
Q 2/32
Score 0
An R __________ is a collection of functions, data, and documentation that extends the capabilities of base R.
30
data.frame
repository
library
package
32 questions
Q.
You can’t tackle big data unless you have experience with small data.
1
30 sec
Q.
An R __________ is a collection of functions, data, and documentation that extends the capabilities of base R.
2
30 sec
Q.
You can install the complete tidyverse with a single line of code:
3
30 sec
Q.
Once you have installed a package, you can load it with the _________ function.
4
30 sec
Q.
The ggplot2, tibble, tidyr, readr, purrr, and dplyr packages are known as the ______ of the tidyverse.
5
30 sec
Q.
The easiest way to include data in a question is to use ______ to generate the R code to recreate it.
6
30 sec
Q.
ggplot2 implements the ___________, a coherent system for describing and building graphs.
7
30 sec
Q.
To load the core tidyverse packages use the _________ command.
8
30 sec
Q.
A _______ is a rectangular collection of variables (in the columns) and observations (in the rows).
9
30 sec
Q.
________ creates a coordinate system that you can add layers to.
10
30 sec
Q.
The first argument of ggplot() is the ______ to use in the graph.
11
30 sec
Q.
You complete your graph by adding one or more ______ to ggplot().
12
30 sec
Q.
Each geom function in ggplot2 takes a _______ argument.
This defines how variables in your dataset are mapped to visual properties.
13
30 sec
Q.
The mapping argument is always paired with _____.
14
30 sec
Q.
Running ggplot(data = mpg) by itself will generate
15
30 sec
Q.
The function __________adds a layer of points to your plot, which creates a scatterplot.
16
30 sec
Q.
To generate the following plot, the variable for the x axis should be mapped within the ______ function.
17
30 sec
Q.
The plot shows a ___________ relationship between engine size (displ) and fuel efficiency (hwy).
18
30 sec
Q.
A(n) ___________is a visual property of the objects in your plot and includes things like the size, the shape, or the color of your points.
19
30 sec
Q.
You can create the plot by mapping the class variable to the _______ aesthetic to reveal the class of each car.
20
30 sec
Q.
You can create the following plot by mapping the class variable to the _______ aesthetic to reveal the class of each car.
21
30 sec
Q.
When using the shape aesthetic, ggplot2 will only use six shapes at a time by default.
22
30 sec
Q.
You can create the plot by mapping the class variable to the _______ aesthetic to reveal the class of each car.
23
30 sec
Q.
Mapping an unordered variable (class) to an ordered aesthetic (size) is not a good idea.
24
30 sec
Q.
You can create the plot by mapping the class variable to the _______ aesthetic to reveal the class of each car.
25
30 sec
Q.
You can create the plot by mapping the​ color aesthetic to "blue" within the aes() function.
26
30 sec
Q.
You can create the following plot by mapping the color aesthetic to "blue" within the geom_point() function ​but outside the aes() function.
27
30 sec
Q.
To set an aesthetic manually, set the aesthetic by name as an argument of your geom function; i.e. it goes outside of aes().
28
30 sec
Q.
To set an aesthetic manually, set the aesthetic by name as an argument of your geom function; i.e. it goes inside of aes().
29
30 sec
Q.
When setting the size aesthetic manually, you specify the size of the point in __.
30
30 sec
Q.
When setting the color aesthetic manually, you can specify the color of the geom using either the name of the color as a string or the hexcode for that color.
31
30 sec
Q.
R has 25 built-in​ shapes that are identified by