Domanda

I have two columns of survey data. To get the chi-square values, I can use:

chisq.test(dat$colA, dat$colB)

for which the output might be

X-squared = 20, df = 5, p-value = 0.2909

How do I get the correlation between the two columns, with a value between -1 and 1?

Thanks.

È stato utile?

Soluzione

Use this: cor(dat$colA, dat$colB)

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top