Note: Slidify is no longer compatible with with Rpubs.


Welcome to Our App!

Luggage Dimension Converter helps travelers: - Convert dimensions from inches to centimeters - Calculate total size with ease - Ensure compliance with airline luggage restrictions

Built with Shiny, simple UI, and intuitive logic.


Problem Statement

Travelers often struggle to: - Convert US-size luggage to metric units - Understand total luggage dimensions - Know whether it fits airline policies

Our app solves all three with instant, reactive feedback.

How It Works

You input hight, width, and depth in inch and your values will be converted.

shinyApp(
  ui = fluidPage(
    numericInput("length", "Length (in):", 25),
    verbatimTextOutput("cm")
  ),
  server = function(input, output) {
    output$cm <- renderText({
      paste("Length in cm:", round(input$length * 2.54, 2))
    })
  }
)

Thank you!

Your attention is valuable to us