An open API service indexing awesome lists of open source software.

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

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")
```