Skip to content

Instantly share code, notes, and snippets.

@tbates
Created February 2, 2016 18:47
Show Gist options
  • Save tbates/819a444681a3d3e20629 to your computer and use it in GitHub Desktop.
Save tbates/819a444681a3d3e20629 to your computer and use it in GitHub Desktop.
Effect of 1st vs 3rd person on objectivity and accuracy ratings
# ================================================================ #
# = Task: Write a 1-paragraph summary of your thesis experiment, #
# = first in 1st person active, then in 3rd person passive #
# ================================================================ #
# Rated objectivity of text
objectivity1stPerson = c(7, 6.5, 7.2, 6, 6);
objectivity3rdPerson = c(9, 8.5, 8.0, 8, 8)
t.test(one, two, paired= TRUE, alt= "less")
# Mean difference: -1.76 [-Inf -1.25] (t(4) = -7.3, p = <.001)
# Rated accuracy of text
accuracy1stPerson = c(5.5, 7, 7.5, 6, 6)
accuracy3rdPerson = c(7 , 8, 6.5, 6, 6)
t.test(accuracy1stPerson, accuracy3rdPerson, paired= TRUE)
# Mean difference: -0.3 [-1.51 0.91] (t(4) = -0.688, p = 0.53)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment