-
Notifications
You must be signed in to change notification settings - Fork 0
Improve documentation #181
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
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
d26eca3
Improve example in overview
tiffanymtang 34f40c2
Update concepts section of readme
tiffanymtang 104b917
showcase real world example in readme
tiffanymtang 8853ee8
add contributing guidelines
tiffanymtang d5bb2f8
update docs
tiffanymtang 22134de
reorganize origins of simchef in readme
tiffanymtang 2c19a80
fix pkgdown bugs
tiffanymtang 5fec70b
add simchef logo
tiffanymtang c3b468a
Update CONTRIBUTING.md
tiffanymtang 923ce26
Update DGP docs
jpdunc23 1dbec50
Run `roxygen2md::roxygen2md(scope = simple)`
jpdunc23 66e23c8
Run `roxygen2md::roxygen2md(scope = full)`
jpdunc23 4979e43
Do some testing maintenance
jpdunc23 70b8c96
Update DGP, Method, Evaluator, and Visualizer docs
jpdunc23 19828d1
Minor doc updates
tiffanymtang f40c7c1
update visualizer .Rd docs
tiffanymtang 388226c
Document the Experiment R6 class
jpdunc23 b4136fc
Remove use of multisession in docs examples
jpdunc23 66d3183
fix error in examples
tiffanymtang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,80 @@ | ||
| # Contributing to `simChef` | ||
|
|
||
| <!-- This CONTRIBUTING.md is adapted from https://gist.github.com/peterdesmet/e90a1b0dc17af6c12daf6e8b2f044e7c --> | ||
|
|
||
| Thank you for considering contributing to `simChef`! | ||
|
|
||
| [repo]: https://github.com/Yu-Group/simChef | ||
| [issues]: https://github.com/Yu-Group/simChef/issues | ||
| [new_issue]: https://github.com/Yu-Group/simChef/issues/new | ||
| [website]: https://yu-group.github.io/simChef/ | ||
| <!-- [citation]: https://our_org.github.io/`simChef`/authors.html --> | ||
| [email]: mailto:ttang4@nd.edu | ||
|
|
||
| ## How you can contribute | ||
|
|
||
| There are several ways you can contribute to this project. If you want to know more about why and how to contribute to open source projects like this one, see this [Open Source Guide](https://opensource.guide/how-to-contribute/). | ||
|
|
||
| <!-- ### Share the love ❤️ | ||
|
|
||
| Think `simChef` is useful? Let others discover it, by telling them in person, via Twitter or a blog post. | ||
|
|
||
| Using `simChef` for a paper you are writing? Consider [citing it][citation]. --> | ||
|
|
||
| ### Ask a question ⁉️ | ||
|
|
||
| Using `simChef` and got stuck? Browse the [documentation][website] to see if you can find a solution. Still stuck? Post your question as an [issue on GitHub][new_issue]. While we cannot offer user support, we'll try to do our best to address it, as questions often lead to better documentation or the discovery of bugs. | ||
|
|
||
| Want to ask a question in private? Contact the package maintainer by [email][email]. | ||
|
|
||
| ### Propose an idea 💡 | ||
|
|
||
| Have an idea for a new `simChef` feature? Take a look at the [documentation][website] and [issue list][issues] to see if it isn't included or suggested yet. If not, suggest your idea as an [issue on GitHub][new_issue]. While we can't promise to implement your idea, it helps to: | ||
|
|
||
| * Explain in detail how it would work. | ||
| * Keep the scope as narrow as possible. | ||
|
|
||
| See below if you want to contribute code for your idea as well. | ||
|
|
||
| ### Report a bug 🐛 | ||
|
|
||
| Using `simChef` and discovered a bug? That's annoying! Don't let others have the same experience and report it as an [issue on GitHub][new_issue] so we can fix it. A good bug report makes it easier for us to do so, so please include: | ||
|
|
||
| * Your operating system name and version (e.g. Mac OS 10.13.6). | ||
| * Any details about your local setup that might be helpful in troubleshooting. | ||
| * Detailed steps to reproduce the bug. | ||
|
|
||
| ### Improve the documentation 📖 | ||
|
|
||
| Noticed a typo on the website? Think a function could use a better example? Good documentation makes all the difference, so your help to improve it is very welcome! | ||
|
|
||
| #### The website | ||
|
|
||
| [This website][website] is generated with [`pkgdown`](http://pkgdown.r-lib.org/). That means we don't have to write any html: content is pulled together from documentation in the code, vignettes, [Markdown](https://guides.github.com/features/mastering-markdown/) files, the package `DESCRIPTION` and `_pkgdown.yml` settings. If you know your way around `pkgdown`, you can [propose a file change](https://help.github.com/articles/editing-files-in-another-user-s-repository/) to improve documentation. If not, [report an issue][new_issue] and we can point you in the right direction. | ||
|
|
||
| #### Function documentation | ||
|
|
||
| Functions are described as comments near their code and translated to documentation using [`roxygen2`](https://klutometis.github.io/roxygen/). If you want to improve a function description: | ||
|
|
||
| 1. Go to `R/` directory in the [code repository][repo]. | ||
| 2. Look for the file with the name of the function. | ||
| 3. [Propose a file change](https://help.github.com/articles/editing-files-in-another-user-s-repository/) to update the function documentation in the roxygen comments (starting with `#'`). | ||
|
|
||
| ### Contribute code 📝 | ||
|
|
||
| Care to fix bugs or implement new functionality for `simChef`? Awesome! 👏 Have a look at the [issue list][issues] and leave a comment on the things you want to work on. See also the development guidelines below. | ||
|
|
||
| ## Development guidelines | ||
|
|
||
| We try to follow the [GitHub flow](https://guides.github.com/introduction/flow/) for development. | ||
|
|
||
| 1. Fork [this repo][repo] and clone it to your computer. To learn more about this process, see [this guide](https://guides.github.com/activities/forking/). | ||
| 2. If you have forked and cloned the project before and it has been a while since you worked on it, [pull changes from the original repo](https://help.github.com/articles/merging-an-upstream-repository-into-your-fork/) to your clone by using `git pull upstream main`. | ||
| 3. Open the RStudio project file (`.Rproj`). | ||
| 4. Make your changes: | ||
| * Write your code. | ||
| * Test your code (bonus points for adding unit tests). | ||
| * Document your code (see function documentation above). | ||
| * Check your code with `devtools::check()` and aim for 0 errors and warnings. | ||
| 5. Commit and push your changes. | ||
| 6. Submit a [pull request](https://guides.github.com/activities/forking/#making-a-pull-request). | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.