https://github.com/pachadotdev/shinywordle
https://github.com/pachadotdev/shinywordle
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/pachadotdev/shinywordle
- Owner: pachadotdev
- License: other
- Created: 2022-01-06T01:53:48.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-07T10:07:42.000Z (over 4 years ago)
- Last Synced: 2025-02-14T21:47:12.316Z (over 1 year ago)
- Language: R
- Size: 56.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# shinywordle
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)
The goal of shinywordle is to ...
## Installation
You can install the development version of shinywordle like so:
``` r
# FILL THIS IN! HOW CAN PEOPLE INSTALL YOUR DEV PACKAGE?
```
## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
library(shinywordle)
## basic example code
```
What is special about using `README.Rmd` instead of just `README.md`? You can include R chunks like so:
```{r cars}
summary(cars)
```
You'll still need to render `README.Rmd` regularly, to keep `README.md` up-to-date. `devtools::build_readme()` is handy for this. You could also use GitHub Actions to re-render `README.Rmd` every time you push. An example workflow can be found here: .
You can also embed plots, for example:
```{r pressure, echo = FALSE}
plot(pressure)
```
In that case, don't forget to commit and push the resulting figure files, so they display on GitHub and CRAN.