Skip to content
/ rmddm Public

RMarkdown template for documenting the CRISP-DM process

Notifications You must be signed in to change notification settings

wkdavis/rmddm

Repository files navigation

rmddm

Build Status AppVeyor Build Status codecov

Overview

rmddm provides Rmarkdown templates for use in data mining, specifically those projects following the CRISP-DM process. The package is based on the rticles package.

Installation

Installing rmddm from github with:

# install.packages("remotes")
remotes::install_github("wkdavis/rmddm")

Example

Creating an RMarkdown template with the CRISP-DM structure.

Using rmddm:

library(rmddm)
crispdm_report("MyReport.Rmd")
crispdm_report("MiInforme.Rmd", language = "es")

Using rmarkdown directly:

library(rmarkdown)
draft("MyReport.Rmd", template = "crispdm_report", package = "rmddm", edit=FALSE)
draft("MiInforme.Rmd", template = "crispdm_report_es", package = "rmddm", edit=FALSE)