We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To avoid warning as tbl_df is depricated, use as_tibble:
tbl_df
as_tibble
# R version 4.0.2 (2020-06-22), wakefield_0.3.6 r_data_frame(n = 5, dob) # # A tibble: 5 x 1 # DOB # <date> # 1 2008-05-15 # 2 2007-03-23 # 3 2008-04-27 # 4 2008-01-21 # 5 2007-09-19 # Warning message: # `tbl_df()` was deprecated in dplyr 1.0.0. # Please use `tibble::as_tibble()` instead.
The text was updated successfully, but these errors were encountered:
Thanks for the report. I'll update soon.
Sorry, something went wrong.
Reduce hard dependencies
b7c4229
ggplot2 and dplyr are mostly only used by examples. Instead of `dplyr::tbl_df()` use `tibble::as_tibble()`. Fixes trinker#27
No branches or pull requests
To avoid warning as
tbl_df
is depricated, useas_tibble
:The text was updated successfully, but these errors were encountered: