Measuring by eye
In this activity, you will be given two strips of paper printed with:
- An empty rectangular box
- A ruler
Follow these steps
- Without using the ruler at all, subdivide by eye the rectangular box into three equal-sized sections, like this:
Now the ruler comes into play. Measure the lengths of your three subdivisions using the ruler.
Record your three measurements in this spreadsheet. Also create an ID for yourself, for example your initials or the initials of your favorite aunt, baseball player, or whatever.
Link to a spreadsheet for data entry
- Once everyone has entered their measurements, copy the following statement into the console in Posit.cloud and run it to create a data frame named
Thirds
.
<- readr::read_csv("https://docs.google.com/spreadsheets/d/e/2PACX-1vT_asFV5LD312bYaGgHK3F91kgLVSiaQpNhggDilfPKAiDBNz9iueOiYWKgAtRRwkFlOz6U9znbiMGK/pub?gid=0&single=true&output=csv") Thirds
- Follow the instructions given in class. These will have you
Calculate the variance of the three measurements for each student separately. Use
mutate()
to calculatemodulus <- ((left-middle)^2 + (left-right)^2 + (middle-right)^2)/3
, storing the result back inThirds
as a variable namedmodulus
.Analyze how good you and your colleagues are at sub-dividing evenly by eye.
Create a new dataframe that is
Thirds
re-arranged into “long” format.
Long_form <- tidyr::pivot_longer(Thirds, !Student_initials, names_to = "position")
- Group
Long_form
by student initials and calculate the variance ofvalue
. Compare these values to those stored undermodulus
inThirds
.
Questions
Why is it not useful, for the purposes of measuring the quality of the subdivision, to calculate the mean of the left, middle, and right segment lengths?
What did you look for in Step (ii)?