# Example of embedded R code
weight <- 70
height <- 1.75
bmi <- round(weight / (height^2), 2)
bmi[1] 22.86
Created in R Shiny
Presented by: BaoKhang
💡 Goal: Build an interactive, easy-to-use BMI calculator that works in real time.
# Example of embedded R code
weight <- 70
height <- 1.75
bmi <- round(weight / (height^2), 2)
bmi[1] 22.86
Core R Packages Used:
shinyrsconnect👉 Live Shiny App: https://baokhang123.shinyapps.io/bmi_cal/
👉 GitHub Repo: https://github.com/tunbin2697/coursera-Shiny-Application-and-Reproducible-Pitch/tree/main