BMI Calculator App

An interactive Shiny application to calculate Body Mass Index using height and weight inputs.

Motivation

Body Mass Index (BMI) is a simple method to assess whether a person has a healthy body weight.

BMI Formula (R Code Execution)

weight <- 70
height <- 1.7
bmi <- weight / (height^2)
bmi
## [1] 24.22145

Shiny App Features

  • User input for height and weight
  • Real-time BMI calculation
  • Clear and simple output display

Conclusion

This project demonstrates how Shiny can be used to build interactive and reproducible data products.