I'm beginner in R. I have learned how to check correlation between numeric data.
However I can not find details on how to check correlation between numeric and boolean type of data. Can anybody give me tips or guide me on this.
Thanks in advance!
|
I'm beginner in R. I have learned how to check correlation between numeric data. However I can not find details on how to check correlation between numeric and boolean type of data. Can anybody give me tips or guide me on this. Thanks in advance! |
||||
|
|
|
This answers your question:
The obvious question is should you be doing this? Remember, correlation is testing for a linear relationship between x and y, i.e. as If you data is a character vector, say:
then you would need to do an additional step:
|
||||
|
|
|
I suppose you are looking for the point-biserial correlation. Download the package
See The result is slightly different from the one obtained with the built-in
|
||||
|
|