-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
56 lines (32 loc) · 1.23 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
---
title : Slidyfy My Shiny
subtitle : App BMI caculator
author : Yihui Zuo
job : Graduate Student in North China Electric Power University
framework : io2012 # {io2012, html5slides, shower, dzslides, ...}
highlighter : highlight.js # {highlight.js, prettify, highlight}
hitheme : tomorrow #
widgets : [mathjax] # {mathjax, quiz, bootstrap}
mode : selfcontained # {standalone, draft}
knit : slidify::knit2slides
---
## Introduce the The BMI Calculator
This presentaion will show the code of my application--
the Body Mass Index (BMI) calculator.
The App can be found at [shinyapps](http://yihuizuo.shinyapps.io/ShinyApp_YihuiZuo)
---
## Creat the User-interface definition
This shiny App is used to caculate your Body Mass Index (BMI)
The input are :Height and Weight
The out put is your BMI
###The calculate equation is
```{r,eval=FALSE}
BMI=weight/(height)^2
```
## also tell you BMI status according to the BMI standard reference
---
## The BMI App interface
![](Graph.JPG)
---
## Information
Find out more about building applications with Shiny here[My github](https://github.com/Yihuiz/BMI-Calculator)