Some visualisation works of the datasets about confirmed cases.
If you want to contribute to a project and make it better, your help is very welcome.
install.packages(
"magrittr",
"readr",
"tidyverse",
"RColorBrewer",
"ggthemes"
)
FREE, see LICENSE.
We try to follow the GitHub flow for development.
- Fork this repo and clone it to your computer. To learn more about this process, see this guide.
- 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 to your clone by using
git pull upstream main
. - Open the RStudio project file (
.Rproj
). - 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.
- Commit and push your changes.
- Submit a pull request.