````markdown

title: “BMI Calculator Shiny App” author: “hibaesawy” date: “April 28, 2026” output: ioslides_presentation —

Introduction

This presentation introduces the BMI Calculator Shiny App.

The application allows users to:

  • Enter weight in kilograms
  • Enter height in meters
  • Instantly calculate BMI
  • View BMI category

Why This App?

Body Mass Index (BMI) is a simple health indicator.

It helps users understand whether they are:

  • Underweight
  • Normal weight
  • Overweight
  • Obese

This app provides a quick and easy BMI calculation.

BMI Formula

BMI is calculated using:

weight <- 70
height <- 1.75
weight / (height^2)
## [1] 22.85714

App Features

The Shiny app includes:

  • Numeric input for weight
  • Numeric input for height
  • Instant reactive BMI result
  • Health category output
  • Beginner-friendly interface

Try the App