https://github.com/tidyverse/dsbox
Companion R package to Data Science Course in a Box
https://github.com/tidyverse/dsbox
Last synced: about 2 months ago
JSON representation
Companion R package to Data Science Course in a Box
- Host: GitHub
- URL: https://github.com/tidyverse/dsbox
- Owner: tidyverse
- License: other
- Created: 2018-05-14T14:07:26.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2023-10-16T17:19:49.000Z (over 1 year ago)
- Last Synced: 2025-03-31T15:25:52.254Z (3 months ago)
- Language: R
- Homepage: https://tidyverse.github.io/dsbox/
- Size: 12.3 MB
- Stars: 52
- Watchers: 6
- Forks: 26
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - tidyverse/dsbox - Companion R package to Data Science Course in a Box (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# dsbox
[](https://github.com/tidyverse/dsbox/actions)
The goal of dsbox is to supplement the Data Science Course in a Box project. The package contains the datasets that are used in the materials in Data Science Course in a Box as well as the learnr tutorials.
## Installation
You can install the released version of dsbox from [CRAN](https://CRAN.R-project.org) with:
```{r}
#| eval: falseinstall.packages("dsbox")
```And the development version from [GitHub](https://github.com/tidyverse/dsbox) with:
```{r}
#| eval: falsedevtools::install_github("tidyverse/dsbox")
```## Questions, bugs, feature requests
You can file an issue to get help, report a bug, or make a feature request.
When filing an issue to get help or report a bug, please make a minimal **repr**oducible **ex**ample using the [reprex](https://reprex.tidyverse.org/) package.
If you haven't heard of or used reprex before, you're in for a treat!
Seriously, reprex will make all of your R-question-asking endeavors easier (which is a pretty insane ROI for the five to ten minutes it'll take you to learn what it's all about).
For additional reprex pointers, check out the [Get help!](https://www.tidyverse.org/help/) section of the tidyverse site.Before opening a new issue, be sure to [search issues and pull requests](https://github.com/tidyverse/dsbox/issues) to make sure the bug hasn't been reported and/or already fixed in the development version.
By default, the search will be pre-populated with `is:issue is:open`.
You can [edit the qualifiers](https://help.github.com/articles/searching-issues-and-pull-requests/) (e.g. `is:pr`, `is:closed`) as needed.
For example, you'd simply remove `is:open` to search _all_ issues in the repo, open or closed.## Code of Conduct
Please note that the dsbox project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html).
By contributing to this project, you agree to abide by its terms.