You are on page 1of 3

cor.

test(x2$vote, direction)

Pearson's product-moment correlation

data: x2$vote and direction


t = 3.5728, df = 19112, p-value = 0.0003541
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
0.01166262 0.03999724
sample estimates:
cor
0.02583512

> cor.test(x2$vote, power)

Pearson's product-moment correlation

data: x2$vote and power


t = -10.415, df = 19112, p-value < 2.2e-16
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
-0.08920538 -0.06101182
sample estimates:
cor
-0.07512361

> cor.test(x2$vote, universalism)

Pearson's product-moment correlation

data: x2$vote and universalism


t = 10.613, df = 19112, p-value < 2.2e-16
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
0.06243145 0.09061891
sample estimates:
cor
0.07654047

> cor.test(x2$vote, achievement)

Pearson's product-moment correlation

data: x2$vote and achievement


t = -15.207, df = 19112, p-value < 2.2e-16
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
-0.1233264 -0.0953118
sample estimates:
cor
-0.1093408

> cor.test(x2$vote, security)

Pearson's product-moment correlation


data: x2$vote and security
t = 2.3768, df = 19112, p-value = 0.01748
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
0.003013661 0.031358824
sample estimates:
cor
0.0171897

> cor.test(x2$vote, stimulation)

Pearson's product-moment correlation

data: x2$vote and stimulation


t = -23.415, df = 19112, p-value < 2.2e-16
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
-0.1807449 -0.1531819
sample estimates:
cor
-0.166996

> cor.test(x2$vote, conformity)

Pearson's product-moment correlation

data: x2$vote and conformity


t = 3.8681, df = 19112, p-value = 0.0001101
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
0.01379753 0.04212890
sample estimates:
cor
0.02796883

> cor.test(x2$vote, tradition)

Pearson's product-moment correlation

data: x2$vote and tradition


t = 13.946, df = 19112, p-value < 2.2e-16
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
0.0863163 0.1143843
sample estimates:
cor
0.1003702

> cor.test(x2$vote, hedonism)

Pearson's product-moment correlation

data: x2$vote and hedonism


t = -17.2, df = 19112, p-value < 2.2e-16
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
-0.1373988 -0.1094774
sample estimates:
cor
-0.1234626

> d <- cor.test(x2$vote, benevolence)


> cor.test(x2$vote, benevolence)

Pearson's product-moment correlation

data: x2$vote and benevolence


t = 6.9591, df = 19112, p-value = 3.535e-12
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
0.03612384 0.06440573
sample estimates:
cor
0.05027486

You might also like