-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
60 lines (36 loc) · 1.76 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
output:
md_document:
variant: markdown_github
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# zementisTutorials
[![Build Status](https://travis-ci.org/alex23lemm/zementisTutorials.svg?branch=master)](https://travis-ci.org/alex23lemm/zementisTutorials)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/alex23lemm/zementisTutorials?branch=master&svg=true)](https://ci.appveyor.com/project/alex23lemm/zementisTutorials)
## Overview
zementisTutorials offers several tutorials around data science, Zementis, and PMML.
## Installation
You can install zementisTutorials from github with:
```{r installation, eval=FALSE}
# install.packages("devtools")
devtools::install_github("alex23lemm/zementisTutorials")
```
## Usage
The following courses are currently offered via zementisTutorials and can be executed using the learnr package:
**De-mystifying Data Science**
The course introduces the data science process and common analytics terminology hands-on using R. Students will solve a real-world data science problem on their own. The course is completely self-contained and no prior analytics or R knowledge is required.
```{r eval=FALSE}
learnr::run_tutorial("data_science_introduction", package = "zementisTutorials")
```
**Zementis Introduction**
Basic introduction to Zementis Server from an end-user perspective. Students will learn how to deploy a ML model to Zementis Server and how to score new data using file uploads, the embedded REST client, an external REST client, and the Zementis Excel Add-In.
```{r eval=FALSE}
learnr::run_tutorial("zementis_introduction", package = "zementisTutorials")
```