Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 1.69 KB

README.md

File metadata and controls

51 lines (42 loc) · 1.69 KB

R for Data Science

example workflow Link a la Documentación

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.

Repository Description

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.