-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
usethis issue clinic #27
Comments
We might also look at the On a different note, a |
Given that |
Sounds reasonable. Just opened ropensci/drake#773. |
I love the usethis package. It lets you set up common pieces of R projects using standardized templates. Want to add a unit test a package?
usethis::use_test()
will create a file intests/testthat
and open it in RStudio for you.usethis::use_logo()
will take an image file, resize it and store itman/figures/logo.png
, which is a good spot for a logo file in an R package.I see two routes here.
1. We show the package some care and try to take out some issues with one of the package's contributer's onsite as a coach (Jim Hester)
2. usethis is geared towards package developers, so we think about what pieces of boilerplate we would want to automate as data analysts. For example,
use_database(connection)
would create the configuration files needed to manage a database connection, add them to.gitignore
, etc.The main limitations for this proposal I think are that
The text was updated successfully, but these errors were encountered: