You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear,
Thank you for this package, which I am using to measure correlations between words. Pairwise co-occurrence between words that co-occur in the same posts from social media. However, I want to extract the p-value of these correlations, I wonder how I can use the package to do that. Thank you David for this tutorial : https://www.youtube.com/watch?v=mApnx5NJwQA
Here is the code for my correlations (line is the id of the post)
correlatee <- data2 %>%
group_by(word) %>%
pairwise_cor(word, line, sort = TRUE, upper = FALSE)
Thank you
The text was updated successfully, but these errors were encountered:
It does not do a test like stats::cor.test(). This is sort of related to #36, where you are interested in a pairwise computation of something beyond the main quantity returned. We could think through how to return other, more complete info in the tidy format we use in this package.
Dear,
Thank you for this package, which I am using to measure correlations between words. Pairwise co-occurrence between words that co-occur in the same posts from social media. However, I want to extract the p-value of these correlations, I wonder how I can use the package to do that. Thank you David for this tutorial : https://www.youtube.com/watch?v=mApnx5NJwQA
Here is the code for my correlations (line is the id of the post)
correlatee <- data2 %>%
group_by(word) %>%
pairwise_cor(word, line, sort = TRUE, upper = FALSE)
Thank you
The text was updated successfully, but these errors were encountered: