I'm attempting to follow this tutorial on using the pairwise_count
function in the widyr package.
In particular, consider this line of code, where data is a tibble which includes the columns "word" and "section":
data %>% pairwise_count(word, section, sort = TRUE)
However, I received the following warning messages:
distinct_()
is deprecated as of dplyr 0.7.0. Please usedistinct()
instead.tbl_df()
is deprecated as of dplyr 1.0.0. Please usetibble::as_tibble()
instead.
I suspect that the pairwise_count
function in the widyr package uses some outdated functions, causing these warnings. Is there a more up-to-date package or function in the tidyverse I can use as a replacement? Otherwise, is there a way to use the function without triggering these warnings?
Code from the
widyr
section of Text Mining with R Chapter 4 generates deprecated function messages for usage ofdistinct_()
andtbl_df()
functions. Since there are over 100 lines of code in Chapter 4 of the book, we whittle it down to the relevant section and minimum number of packages needed to replicate the warning messages....generates the following:
These messages are generated because widyr::pairwise_count() uses
dplyr::distinct_()
, which then callstbl_df()
.We can see the sources of the warnings when we print the warning messages with
lifecycle::last_warnings()
.Version 0.1.3 of
widyr
is the current version of the package. To resolve these warning messages, one must replace the reference todplyr::distinct_()
in widyr::pairwise_count(). Since this is a currently supported R package, to initiate this process one would report an Issue at the widyr Github Issues page.As noted in the text of the warning message,
distinct_()
has been replaced withdplyr::distinct()
, andtbl_df()
has been replaced withtibble::as_tibble()
.Suppressing the warnings
One can suppress the warnings produced by
pairwise_count()
by wrapping it within asuppressWarnings()
function....and the output:
Appendix
This code was run on version 4.0.2 of R, with the following packages, as reported by
sessionInfo()
: