Data Basics
Reading Graphs
Shape/Spread
RStudio Basics
Coding
100

One way we gather data

What is surveys?

100

Define frequency

What is count?

100
Define Bins.

what are intervals on the x-axis (what we count by)?

100

Symbol to take notes in RStudio

What is a #?

100
Which pane do we type codes in?

What is the console?

200

Define Data

What is information that is collected and recorded?

200

Define typical.

What is the most common occurrence?

200

Define symmetric.

what is peaks in the middle, tails on both sides?
200

What's different about the code for a dotplot?

What is a capital P: dotPlot

200

Graph that uses 2 numerical variables?

What is a scatterplot?

300

Define variability.

What is how much the data varies (how spread out it is)

300

typical = always center?

What is no, typical is not necessarily always in the center


300

Define algorithm.

What is an input with correct syntax that produces the same output every time.

EX: PB&J Sandwich 

300

Two codes that give the same output as dim(cdc)

What is nrow(cdc) and ncol(cdc)

300

Define syntax. Why is it important?

What is the language used (capitalization, spelling, and punctuation). Codes have to be correct or we will get an error.

400

Difference between Categorical and Numerical variables

What is words/categories vs numbers only

400
How to find range.

What is max-min?

400

Right vs Left Skewed

What is: 

Right-skewed: peak on left, tail on right

Left-skewed: pean on right, tail on left

400

cex vs nint

what is:

cex: changes size of dots

nint: changes # of bins/intervals

400

Basic coding formula & what each piece is...

What is function(y~x, data=_____)?

Function = type of graph, or what you want R to do (ex: tally)

y & x = variables with tilde in between

data blank = the name of the dataset

500
Four parts of the data cycle

What is pose question, consider data, analyze data, interpret data?

500

Visualization that is better than a tangible plot, why?

What is dotPlot because it is more organized and easier to read/interpret?

500

Modes (spread of datal) 

Hint: There are 3.

What is:

Unimodal - one peak

Bimodal - two peaks

Multimodal - more than two peaks

500

Layout option

what is an option to add to a code that changes the # of columns and rows in a split graph - makes graphs easier to compare (side by side or stacked).

layout = c(#,#) -- 1st # = columns, 2nd # = rows.

500

Difference between grouping and splitting. 

What is inputs:

split = |(after variable), groups = _____(at end of code)

What is outputs:

groups = 1 graph, multiple colors 

split = multiple graphs, side by side or stacked

M
e
n
u