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
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