widyr icon indicating copy to clipboard operation
widyr copied to clipboard

Widen, process, and re-tidy a dataset

Results 18 widyr issues
Sort by recently updated
recently updated
newest added

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

Hi There, I love your package. I can't see anything about this in the current issues. I've been trying to create a function that uses `widyr::pairwise_cor()` using the new tidy...

Hello, Thanks for the great package! It is not clear to me how to select the number of PCA inside the function "widely_svd". Can I know the variability explained by...

Since ```widyr``` has two distance based functions, namely ```pairwise_delta``` and ```pairwise_dist```, I was wondering if we can take it a step further and add functionality for the data analyst/scientist to...

To mirror `dplyr::count()` it would be nice to have an optional argument "name" which would change the output column from the default "n" to whatever is specified. For example: ```...

I was wondering if there was a function that takes the pairwise differences (A-B)... And then I realized maybe having a function that applies any function and applies it in...

When setting diag = TRUE I am seeing inflated counts among diagonal pairs. ``` library(tidyverse) test_tb % pivot_longer(cols = starts_with("score")) %>% widyr::pairwise_count(value, group, diag = TRUE, sort = TRUE, upper...

`widyr::pairwise_count` counts pairwise co-occurrences of items within features. For example: ``` r library(dplyr) library(widyr) tbl # A tibble: 6 x 3 #> item1 item2 n #> #> 1 b a...

I've been benefited from `widyr::pairwise_count` for years. It is really fast, however, recently I need to get all the combinations within the group and I tried use it again, but...

I'm not totally sure if this is a feature or a bug but many pairwise comparisons drop 0s in the output. For instance, in the pairwise count example ``` dat