juliasilge / widyr

Widen, process, and re-tidy a dataset
http://juliasilge.github.io/widyr/
Other
327 stars 29 forks source link

replace deprecated tbl_df with as_tibble #32

Closed kmdupr33 closed 4 years ago

kmdupr33 commented 4 years ago

You mentioned during your Tidy Tuesday live screencast on Analyzing cocktail recipes that you need to update widyr to use as_tibble instead of tbl_df. This pr does that. I have tested that this still works locally by running

options(lifecycle_verbosity = "warning")
gapminder %>%
  pairwise_cor(country, year, lifeExp, upper = FALSE)
codecov-commenter commented 4 years ago

Codecov Report

Merging #32 into master will not change coverage. The diff coverage is 100.00%.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #32   +/-   ##
=======================================
  Coverage   65.56%   65.56%           
=======================================
  Files          11       11           
  Lines         212      212           
=======================================
  Hits          139      139           
  Misses         73       73           
Impacted Files Coverage Δ
R/widely.R 97.82% <100.00%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 4220fb0...ea1fd91. Read the comment docs.

dgrtwo commented 4 years ago

Awesome, thanks Matt!

kmdupr33 commented 4 years ago

Np! Glad I could help! Let me know if there's anything else you'd like help with here. It gives me a good opportunity to practice what I'm learning :)