https://github.com/kevcaz/qcbsgraphr
:book: Code source of the 'Graphic programming with R' presentation.
https://github.com/kevcaz/qcbsgraphr
graphics r
Last synced: 3 months ago
JSON representation
:book: Code source of the 'Graphic programming with R' presentation.
- Host: GitHub
- URL: https://github.com/kevcaz/qcbsgraphr
- Owner: KevCaz
- License: cc0-1.0
- Created: 2016-05-08T17:34:40.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-10-12T20:39:06.000Z (over 6 years ago)
- Last Synced: 2025-01-21T03:41:15.836Z (5 months ago)
- Topics: graphics, r
- Language: R
- Homepage: http://kevcaz.github.io/QCBSgraphR/
- Size: 6.34 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# QCBSgraphR
Code source of the 'R Graphs' presentation made with [Slidify](http://slidify.org)
## How to use this repository
1. Clone this repository
2. Install slidify
```R
library(devtools)
install_github("ramnathv/slidify")
install_github("ramnathv/slidifyLibraries")
```3. use slidify to build the presentation
```R
library(slidify)
slidify("docs/index.Rmd")
```
or use the `makefile````bash
make
```## Content
### docs
- `index.Rmd`: to be converted into `index.md` and then into `index.html`;
- `index.html`: the file your web browser will use;
- other directories are frameworks, images, figures we used for the presentation.- **data folder**: data for the exercises.
- **scripts**:
- `code_R.R` and multipanel.R are used to generate example used in the presentation;
- Exercise1.R and Exercise1.R are solutions to the exercises we proposed;
- myboxplot.R a solution for the challenge : "do your own boxplot" (not integrated in the presentation yet);
- showtext.R a short script to present how to use [showtext package](https://cran.rstudio.com/web/packages/showtext/index.html) that allows to use different font in R.## To do
- Slidify is not maintained anymore, so let's use something else...