Vocab
ggplot2
Data Manipulation Verbs
Common Operators
R Basics
100

A named place used to store a value is...

A variable

100

The term that refers to a geometric object and is responsible for rendering a data point in a plot in ggplot2 is 

A geom

100

The data manipulation verb "filter()" allows you to...

Select rows (observations) by their specific values.

100

The operator used to signify "equals to" is...

==

100

The top left quadrant in R Studio, the source pane, displays...

The code you written, text written, and displays of what knitted code will look like when code chunk is run

200
The general direction in which data changes overtime is...

A trend

200
The collection of R packages designed to make data importing, cleaning, transforming, visualizing, and analyzing more consistent and readable is...

The Tidyverse

200

The data manipulation verb "select()" allows you to...

Select certain columns/variables by their name. 

200

The operator used to signify "not equal to" is...

!=

200

The top right quadrant in R Studio, the environment pane, displays...

Imported data sets, data frames, variables, and vectors

300

The process of finding or fixing errors or bugs in software code is called...

Debugging

300

A visual property of the geometric objects in a plot that can be mapped to variables in your data is...

The aesthetic 

300

The data manipulation verb "mutate()" allows you to...

Add a new column or modify existing ones using mathematical functions to manipulate the data in current columns.

300

The operator used to assign a variable is...

<-
300

The bottom left quadrant in R Studio, the console pane displays...

The code run-history

400

The spread of different numbers and/or data points that you have collected is...

A distribution

400

A modern, optimized version of the transitional data frame, and Professor Burriss's favorite word is...

A tibble

400

The data manipulation verb "summarize()" allows you to...

Collapse multiple rows into a single new statistic (mean, sum, etc.)

400

To write a non-coding note in the environment pane, you may use...

#YOUR NOTE

400

".rmd" stands for...

R-markdown

500

An issue with the corresponding code and it cannot run is...

An error
500

A way to split a plot into multiple smaller panels, each showing a subset of the data based on the variable of one or more categorical variables, and popularized through ggplot 2 is...

A facet

500

In order to use a data manipulation verb, what code do you type after the name of the data set?

%>%

Example: students %>%

                   select(name, hours)                   

500

To signify the start and end of a code block, you will see the operator...

```

500

"Knit" means (in the context of coding!)...

Compiling all code in an .rmd file into a finished pdf