-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
65 lines (42 loc) · 1.16 KB
/
index.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
58
59
60
61
---
title : The click plot application!
subtitle :
author : markist
job :
framework : io2012 # {io2012, html5slides, shower, dzslides, ...}
highlighter : highlight.js # {highlight.js, prettify, highlight}
hitheme : tomorrow #
widgets : [] # {mathjax, quiz, bootstrap}
mode : selfcontained # {standalone, draft}
knit : slidify::knit2slides
---
## Application
This is a shiny application to calculate
- mean,
- median and
- standard deviation
from longitudinal data.
---
## The data (I)
Wind data from the aiquality data set can be seleted.
````{r, echo=FALSE}
require(graphics)
plot(airquality$Day,airquality$Wind)
plot(airquality$Day,airquality$Temp)
````
---
## The data (II)
Temperature data from the aiquality data set can be seleted as well!
````{r,echo=FALSE}
require(graphics)
plot(airquality$Day,airquality$Temp)
````
---
## Start now!
To get started:
Click into the plot:
- go to: https://markist.shinyapps.io/CourseraShinyApp/
- click on the plot
- a line where you clicked will be shown
- the calculated variable will be plotted between the clicks
- P.S: You can choose a title!