https://github.com/jooyoungseo/edmdown
Writing a Reproducible Article for Journal of Educational Data Mining in R Markdown
https://github.com/jooyoungseo/edmdown
edm gitbook jedm latex markdown r reproducible rmarkdown word
Last synced: 2 months ago
JSON representation
Writing a Reproducible Article for Journal of Educational Data Mining in R Markdown
- Host: GitHub
- URL: https://github.com/jooyoungseo/edmdown
- Owner: jooyoungseo
- Created: 2019-12-02T18:38:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-16T22:54:40.000Z (about 6 years ago)
- Last Synced: 2025-05-24T12:42:45.877Z (about 1 year ago)
- Topics: edm, gitbook, jedm, latex, markdown, r, reproducible, rmarkdown, word
- Language: TeX
- Homepage:
- Size: 4.79 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
Awesome Lists containing this project
README
---
output:
github_document:
html_preview: false
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%",
tidy = "styler"
)
```
# edmdown
The goal of edmdown is to provide a reproducible template for the Journal of Educational Data Mining using R Markdown in multiple formats such as pdf, gitbook, and Word.
## Installation
`edmdown` is currently under development on GitHub. Please install and test the package as follows:
```{r installation, eval = FALSE}
if(!require(remotes)) {
install.packages("remotes")
}
remotes::install_github('jooyoungseo/edmdown')
```
## Example
This is a basic example which shows you how to use `edmdown` package.
While other formats are usable, `pdf` output is fully supported at this moment.
``` r
## Loading package:
library(edmdown)
## Do the following if you are a non-RStudio user:
rmarkdown::draft(file = "my_article",
template = "jedm_article",
package = "edmdown"
)
# After editing, use the bookdown knit button in RStudio; if you don't use RStudio, do the following in your R console:
bookdown::render_book("my_article.Rmd", output_format = "all")
```