This outlines how to propose a change to Learn-Statistics.
Small typos or grammatical errors in documentation may be edited directly using the GitHub web interface, so long as the changes are made in the source file. If you want to fix typos in the documentation, please edit the related .R
file in the R/
folder. Do not edit an .Rd
file in man/
.
The easiest way to propose a change or new feature is to file an issue. If you've found a bug, you may also create an associated issue. If possible, try to illustrate your proposal or the bug with a minimal reproducible example.
NEWS.md
describing the changes made. You may optionally add your GitHub username, and links to relevant issue(s)/PR(s).Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
devtools::create("myfirstpackage")
to create an R package.usethis::use_ccby_license(name="Author Name")
to add a license.usethis::use_pipe()
to add the 'magnittr' pipe.usethis::use_test('myStatistics')
to create a test file.devtools::test()
.devtools::load_all()
.covr::coverage_to_list()
or covr::report()
(70-100% is good).devtools::use_data(x)
to store object x
as a data object that is part of this package.usethis::use_vignette("introduction")
to create a template vignette file.devtools::check()
before doing a git commit
and git push
and solve any issues.devtools::document()
to generate documentation.Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.