Question

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.

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top