Created
February 2, 2016 18:47
-
-
Save tbates/819a444681a3d3e20629 to your computer and use it in GitHub Desktop.
Effect of 1st vs 3rd person on objectivity and accuracy ratings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ================================================================ # | |
# = 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