- N: 1233 - 1088 passed all attention checks - Dem: 891 - Rep: 197 # Treatments 4 and 13 ![[Pasted image 20210711122924.png]] # Discernment ```r # discernment: control vs 2 treatments combined > summaryh(lm(discern ~ condition, dt1)) term results 1: (Intercept) b = 0.85, SE = 0.03, t(1086) = 26.04, p < .001, r = 0.62 2: condition b = 0.08, SE = 0.07, t(1086) = 1.15, p = .252, r = 0.04 # discernment: control (intercept) vs 2 treatments separately > summaryh(lm(discern ~ treatment, dt1)) term results 1: (Intercept) b = 0.82, SE = 0.05, t(1085) = 15.31, p < .001, r = 0.42 2: treatment4 b = 0.12, SE = 0.08, t(1085) = 1.56, p = .118, r = 0.05 3: treatment13 b = 0.03, SE = 0.08, t(1085) = 0.42, p = .674, r = 0.01 ``` ![[discern_demrep 2.png]] # Real/fake news sharing ```r # real: control vs 2 treatments combined > summaryh(lm(realsm ~ condition, dt1)) term results 1: (Intercept) b = 2.69, SE = 0.03, t(1086) = 79.84, p < .001, r = 0.92 2: condition b = −0.004, SE = 0.07, t(1086) = −0.06, p = .950, r = 0 # real: control (intercept) vs 2 treatments separately > summaryh(lm(realsm ~ treatment, dt1)) term results 1: (Intercept) b = 2.69, SE = 0.05, t(1085) = 49.16, p < .001, r = 0.83 2: treatment4 b = 0.04, SE = 0.08, t(1085) = 0.56, p = .573, r = 0.02 3: treatment13 b = −0.05, SE = 0.08, t(1085) = −0.67, p = .504, r = −0.02 ``` ```r # fake: control vs 2 treatments combined > summaryh(lm(fakesm ~ condition, dt1)) term results 1: (Intercept) b = 1.83, SE = 0.03, t(1086) = 60.80, p < .001, r = 0.88 2: condition b = −0.08, SE = 0.06, t(1086) = −1.32, p = .189, r = −0.04 # fake: control (intercept) vs 2 treatments separately > summaryh(lm(fakesm ~ treatment, dt1)) term results 1: (Intercept) b = 1.87, SE = 0.05, t(1085) = 38.19, p < .001, r = 0.76 2: treatment4 b = −0.07, SE = 0.07, t(1085) = −1.07, p = .285, r = −0.03 3: treatment13 b = −0.08, SE = 0.07, t(1085) = −1.20, p = .230, r = −0.04 ``` ![[fake_real_demrep 1.png]] # Correlations ## Select variables ![[Pasted image 20210729111924.png]] ## All variables ![[Pasted image 20210729111910.png]]