Skip to content
Snippets Groups Projects
Commit da56976c authored by Nikolay Nikolaev's avatar Nikolay Nikolaev
Browse files

Add Basic Structure

parent 6f95a4da
No related branches found
No related tags found
No related merge requests found
--- ---
title: "Tutorial" title: "Data Science Tutorial"
output: learnr::tutorial output: learnr::tutorial
runtime: shiny_prerendered runtime: shiny_prerendered
--- ---
...@@ -10,11 +10,11 @@ knitr::opts_chunk$set(echo = FALSE) ...@@ -10,11 +10,11 @@ knitr::opts_chunk$set(echo = FALSE)
``` ```
## Topic 1 ## Datenbasis
### Exercise ### Datenherkunft
*Here's a simple exercise with an empty code chunk provided for entering the answer.* *Wo kommen die Daten her?*
Write the R code required to add two plus two: Write the R code required to add two plus two:
...@@ -22,9 +22,9 @@ Write the R code required to add two plus two: ...@@ -22,9 +22,9 @@ Write the R code required to add two plus two:
``` ```
### Exercise with Code ### Inhalt
*Here's an exercise with some prepopulated code as well as `exercise.lines = 5` to provide a bit more initial room to work.* Was ist der Inhalt der Datensatz.
Now write a function that adds any two numbers and then call it: Now write a function that adds any two numbers and then call it:
...@@ -34,9 +34,17 @@ add <- function() { ...@@ -34,9 +34,17 @@ add <- function() {
} }
``` ```
## Topic 2 ### Hypothesen
### Exercise with Hint *Mindestens 2 Hypothesen*
Mindestens 2 Hypothesen
## Datenaufbereitung
### Einlesen von Daten
*Here's an exercise where the chunk is pre-evaluated via the `exercise.eval` option (so the user can see the default output we'd like them to customize). We also add a "hint" to the correct solution via the chunk immediate below labeled `print-limit-hint`.* *Here's an exercise where the chunk is pre-evaluated via the `exercise.eval` option (so the user can see the default output we'd like them to customize). We also add a "hint" to the correct solution via the chunk immediate below labeled `print-limit-hint`.*
...@@ -50,6 +58,12 @@ mtcars ...@@ -50,6 +58,12 @@ mtcars
head(mtcars) head(mtcars)
``` ```
### Inkonsistenzen und Leerstellen beheben
*Here's an exercise where the chunk is pre-evaluated via the `exercise.eval` option (so the user can see the default output we'd like them to customize). We also add a "hint" to the correct solution via the chunk immediate below labeled `print-limit-hint`.*
Modify the following code to limit the number of rows printed to 5:
### Quiz ### Quiz
*You can include any number of single or multiple choice questions as a quiz. Use the `question` function to define a question and the `quiz` function for grouping multiple questions together.* *You can include any number of single or multiple choice questions as a quiz. Use the `question` function to define a question and the `quiz` function for grouping multiple questions together.*
...@@ -73,3 +87,31 @@ quiz( ...@@ -73,3 +87,31 @@ quiz(
) )
``` ```
## Datenanalyse
### Mittelwert
### Median
### Varianz
### Standardabweichung
### Lineare Regression
### Hypothesentest
## Ergebnispräsentation
### Streudiagramm
### Kein Plan
## Teaminfos
### Nikolay Nikolaev
### Maximilian Fronmüller
### Lino Cortese
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment