To Notes

IT 223 -- Jan 5, 2026

IT 223 Course Website

Early History of Statistics

Applications of Statistics in the 20th Century

What Does a Data Analyst Do?

Exploratory Data Analysis

The R Programming Environment

Quartiles

  • Histograms
  • Practice Problems

    1. Match the descriptions with the histograms below:
      1. The gender of all persons in a college class (male = 0, female = 1).
      2. The handedness of all persons in a college class (left handed = 0, right handed = 1).
      3. The heights of all married persons counted separately.
      4. The heights of all persons in families where both parents are 28 years old or less.
      5. The heights of all automobiles.
      6. The incomes of all persons in the U.S.
    2. Draw the histogram and determine what percent of observations is represented by the third bin, in each case. Note: [a,b) denotes an interval that is closed on the left (includes a) and open on the right (does not include b).
    3. Caution: what does it mean for histograms (b) and (c) to have bins of different widths?
      (a)
      Bin Count
      [0,1) 1
      [1,2) 3
      [2,3) 4
      [3,4] 1
      (b)
      Bin Count
      [0,1) 2
      [1,2) 4
      [2,4] 1
      (c)
      Bin Count
      [0,1) 2
      [1,2) 4
      [2,2.5) 3
      [2.5,3] 1
    4. Compute the median for each histogram in Problem 2 by using interpolation in the bar that contains the median.
    5. Draw the histogram without bar lines of
      1. the incomes of all persons in the U. S.
      2. the GPAs of all students at DePaul.
      3. the number of years of schooling of all persons in the U. S.
      4. the IQs of all persons in the U.S.

    Project 2