As today (2021-06-29) R throws a warning when using pairwise_cor() funciton. Here is the full message:
Warning message:
`tbl_df()` was deprecated in dplyr 1.0.0.
Please use `tibble::as_tibble()` instead.
This warning is displayed once every 8 hours.
Call `lifecycle::last_warnings()` to see where this warning was generated.
> lifecycle::last_warnings()
[[1]]
<deprecated>
message: `tbl_df()` was deprecated in dplyr 1.0.0.
Please use `tibble::as_tibble()` instead.
Backtrace:
1. `%>%`(...)
9. dplyr::tbl_df(.)
As today (2021-06-29) R throws a warning when using
pairwise_cor()
funciton. Here is the full message: