Error scores

KINESIOL 2MC3

Lab 1

Consider the following scenario

A person is tasked with learning to project a slider down a fixed track to a specified goal distance of 100 cm using their non-dominant hand. The person performs 5 trials of this task. On each trial, you record the distance the slider traveled from the start point (wooden barrier).

Consider the following scenario

The result for each trial is shown below:


  • Trial 1: 93 cm
  • Trial 2: 103 cm
  • Trial 3: 99 cm
  • Trial 4: 105 cm
  • Trial 5: 96 cm


Q1: How should we measure performance on this task?
Q2: What type of measure would this be?
Q3: How would you classify this task?

Constant error (CE) is a measures of bias

We can calculate using: \(Mean \,CE = \sum(x_{i} - T)/n\)

# Calculate CE for each trial then get the mean
((93 - 100) + (103 - 100) + (99 - 100) + 
 (105 - 100) + (96 - 100)) / 5
[1] -0.8

Mean CE = -0.8 cm \(\longrightarrow\) How do we interpret this?

Constant error (CE) is a measures of bias

# Calculate CE
((99 - 100) + (99 - 100) + (100 - 100) + 
 (99 - 100) + (99 - 100)) / 5
[1] -0.8

Mean CE = -0.8 cm

What do we learn from this?

Variable error (VE) is a measure of consistency

We can calculate using: \(Mean \,VE = \sqrt{\sum(x_{i} - M)^2/n}\)

# Step 1: Calculate M for the set of trials
mean(c(93, 103, 99, 105, 96))
[1] 99.2
# Step 2: Calculate squared difference then get mean
sqrt(((93 - 99.2)^2 + (103 - 99.2)^2 + (99 - 99.2)^2 + 
      (105 - 99.2)^2 + (96 - 99.2)^2) / 5)
[1] 4.4

Mean VE = 4.4 cm \(\longrightarrow\) How do we interpret this?

Variable error (VE) is a measure of consistency

# Step 1: Calculate M for VE
mean(c(rep(99, 4), 100))
[1] 99.2
# Step 2: Calculate squared difference then get mean
sqrt(((99 - 99.2)^2 + (99 - 99.2)^2 + (99 - 99.2)^2 + 
      (99 - 99.2)^2 + (100 - 99.2)^2) / 5)
[1] 0.4

Mean VE = 0.4 cm

What is the mean CE for this set of trials?

# Calculate CE
((98 - 100) + (96 - 100) + (104 - 100) + 
 (102 - 100) + (100 - 100)) / 5
[1] 0

Mean CE = 0 cm

Absolute error (AE) is a measure of overall accuracy

We can calculate using: \(Mean \,AE = \sum|x_{i} - T|/n\)

# Calculate absolute difference for each trial then get mean
(abs(93 - 100) + abs(103 - 100) + abs(99 - 100) + 
 abs(105 - 100) + abs(96 - 100)) / 5
[1] 4

Mean AE = 4 cm \(\longrightarrow\) How do we interpret this?

Absolute error (AE) is a measure of overall accuracy

# Calculate CE
((98 - 100) + (96 - 100) + (104 - 100) + (102 - 100) + 
 (100 - 100)) / 5
[1] 0
# Calculate AE
(abs(98 - 100) + abs(96 - 100) + abs(104 - 100) + 
 abs(102 - 100) + abs(100 - 100)) / 5
[1] 2.4

What do we learn from this?

What is the relationship among CE, VE, and AE?

Person Trial 1 Trial 2 Trial 3 Trial 4 Trial 5
Jae 80 90 85 82 87
Diane 95 105 100 97 102

If we calculated mean CE, mean VE, and mean AE for each person…

Person CE VE AE
Jae -15.2 3.54 15.2
Diane -0.2 3.54 3.0

We can transform CE into absolute constant error (|CE| or ACE)

We can calculate using by taking the absolute value of our calculated CE:

# Calculate mean CE as before but afterwards take the absolute
abs(((93 - 100) + (103 - 100) + (99 - 100) + 
    (105 - 100) + (96 - 100)) / 5)
[1] 0.8

Mean |CE| = 0.8 cm \(\longrightarrow\) How do we interpret this?

Total variability (E) is a measure of “total error”

We can calculate using: \(Mean \,E = \sqrt{\sum(x_{i} - T)^2/n}\)

# Calculate squared difference then get mean
sqrt(((93 - 100)^2 + (103 - 100)^2 + (99 - 100)^2 + 
      (105 - 100)^2 + (96 - 100)^2) / 5)
[1] 4.472136

Mean E = 4.47 \(\longrightarrow\) How do we interpret this?