



Edit 'tests/testthat/test-my-test.R' x ✔ Adding 'R' to Depends field in DESCRIPTION #> ✔ Creating 'data/' #> ✔ Setting LazyData to 'true' in 'DESCRIPTION' #> ✔ Saving 'x', 'y' to 'data/x.rda', 'data/y.rda' #>.

use_news_md ( ) #> ✔ Writing 'NEWS.md' use_test ( "my-test" ) #> ✔ Adding 'testthat' to Suggests field in DESCRIPTION #> ✔ Setting Config/testthat/edition field in DESCRIPTION to '3' #> ✔ Creating 'tests/testthat/' #> ✔ Writing 'tests/testthat.R' #> ✔ Writing 'tests/testthat/test-my-test.R' #> Update 'README.md' to include installation instructions.Then directly refer to functions with `ggplot2::fun()` # Set up other files - use_readme_md ( ) #> ✔ Writing 'README.md' #>.Use `requireNamespace("ggplot2", quietly = TRUE)` to test if package is installed #>.#> License: `use_mit_license()`, `use_gpl3_license()` or friends to pick a #> license #> Encoding: UTF-8 #> Roxygen: list(markdown = TRUE) #> RoxygenNote: 7.2.0 #> ✔ Writing 'NAMESPACE' #> ✔ Setting active project to '' # only needed since this session isn't interactive proj_activate ( path ) #> ✔ Setting active project to '/private/tmp/Rtmp4VMzwK/mypkg' #> ✔ Changing working directory to '/tmp/Rtmp4VMzwK/mypkg/' # Modify the description - use_mit_license ( "My Name" ) #> ✔ Setting License field in DESCRIPTION to 'MIT + file LICENSE' #> ✔ Writing 'LICENSE' #> ✔ Writing 'LICENSE.md' #> ✔ Adding '^LICENSE\\.md$' to '.Rbuildignore' use_package ( "ggplot2", "Suggests" ) #> ✔ Adding 'ggplot2' to Suggests field in DESCRIPTION #> #> (parsed): #> * First Last (YOUR-ORCID-ID) #> Description: What the package does (one paragraph). Library ( usethis ) # Create a new package - path ✔ Creating '/tmp/Rtmp4VMzwK/mypkg/' #> ✔ Setting active project to '/private/tmp/Rtmp4VMzwK/mypkg' #> ✔ Creating 'R/' #> ✔ Writing 'DESCRIPTION' #> Package: mypkg #> Title: What the Package Does (One Line, Title Case) #> Version: 0.
