What is Statistics? (Lecture Notes)
- State examples of statistical questions.
- State the five main steps in the statistical analysis of data.
Chapter 1
Individuals and variables
- Define individual and variable in the context of a data set.
- Identify the individuals and variables given the description of a data set.
- Explain how the concept of individual and variable relates to the rows and columns of a typical spreadsheet containing a data set.
Identifying categorical and quantitative variables
- State the characteristics of quantitative and categorical variables.
- Given a variable, determine whether it is quantitative or categorical.
Quantitative variables: histograms
- Construct a rug plot by-hand given a (small) data set.
- Construct a histogram by-hand given a (small) data set and the desired bin width and starting boundary.
Interpreting histograms
- Identify key characteristics of the shape of a histogram.
- Identify key characteristicss of the center of a histogram.
- Identify key characteristics of the spread of a histogram.
- Identify potential outliers using a histogram in conjunction with a rug plot.
- Interpret a histogram in the context of the data set it summarizes.
R (Lecture Notes)
- Use R for basic arithmetic.
- Load a data frame into RStudio.
- Load a package (such as
mosaic
) into RStudio.
- State the grammar used by functions in
mosaic
.
- Generate a rug plot using
mosaic
’s gf_rugx
function.
- Generate a histogram using
mosaic
’s gf_histogram
function, and specify the bin width and starting boundary by passing arguments to gf_histogram
.
- Add a rug plot to a histogram generated by
mosaic
using the %>%
operator.