This repository contains the source of R for Data Science book. The book is built using mkdocs.
Note: this repository is an alternative to the official r4ds documentation.
The repository has the following folders and files:
|
+--- .github
| \--- workflows
| documentation.yml
|
\--- docs
| \--- data
| **.csv
| **.xlsx
| \--- images
| **.png
| **.jpg
| \--- **.ipynb
|
| .gitignore
| contribs.txt
| LICENSE
| mkdocs.yml
| poetry.lock
| pyproject.toml
| README.md
where:
.github/workflows/documentation.yml
: generate documentation with Github Actions.docs/data
:.csv
and.xlsx
file for examples.docs/images
: images in.png
and.jpg
format.docs/**.ipynb
: all jupyter notebooks with R kernel..gitignore
: is a text file that tells Git which files or folders to ignore in a project.contribs.txt
: project contributors hadley/r4ds/.LICENSE
: open source license.mkdocs.yml
: mkdocs settings are always configured by using this file.poetry.lock
: poetry file for python dependencies.pyproject.toml
: poetry file for python dependencies.README.md
: this file contains the repository name and some basic instructions.