https://github.com/r4ds/mentordash
https://github.com/r4ds/mentordash
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/r4ds/mentordash
- Owner: r4ds
- License: other
- Created: 2020-01-18T23:09:56.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-12-05T19:25:43.000Z (12 months ago)
- Last Synced: 2025-07-27T05:26:05.532Z (4 months ago)
- Language: R
- Size: 126 KB
- Stars: 8
- Watchers: 1
- Forks: 3
- Open Issues: 13
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - r4ds/mentordash - (R)
README
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# mentordash
[](https://www.tidyverse.org/lifecycle/#experimental)
The goal of mentordash is to create a dashboard for mentors at the [Data Science Learning Community](https://dslc.io/).
Thank you to [yonicd](https://github.com/yonicd/threads/) for a great deal of work in the threads package!
The dashboard is now [deployed](http://dslc.io/mentordash)!
## Installation
You can install the released version of mentordash from [CRAN](https://CRAN.R-project.org) with:
``` r
# Nope.
# install.packages("mentordash")
```
And the development version from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("r4ds/mentordash")
```
## Example
```{r example, eval=FALSE}
library(mentordash)
run_app()
```
## Contributing
Please note that the 'mentordash' project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md).
By contributing to this project, you agree to abide by its terms.
We roughly follow the [tidyverse style guide](https://style.tidyverse.org/), with the exception that we borrow the Google convention of prefixing unexported functions with ".". For example, while golem defaults to `app_ui` for the main unexported UI function, we renamed this to `.ui_main`.