├── .github ├── CODE_OF_CONDUCT.md └── workflows │ └── static.yml ├── .gitignore ├── 404.html ├── CNAME ├── README.md ├── index.html └── r4ds_app.Rproj /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r4ds/r4ds_app/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r4ds/r4ds_app/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r4ds/r4ds_app/HEAD/.gitignore -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r4ds/r4ds_app/HEAD/404.html -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | rfordatasci.com 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r4ds/r4ds_app/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r4ds/r4ds_app/HEAD/index.html -------------------------------------------------------------------------------- /r4ds_app.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r4ds/r4ds_app/HEAD/r4ds_app.Rproj --------------------------------------------------------------------------------