Group 3
14 June 2021
Group Members:
Lim Whei Han
Imran Asyraaf Bin Mohd Ikhalan
Lim Kang Zheng
Lim Zhuan De
BMI World Map shows that obesity is not only faced by high income countries, there are factors like lifestyle and diet to consider. What would be the most interactive way to understand BMI across countries?
The app accepted both metric(kg & m) units or imperial (lb & in) units. The formula for both units are given below.
bmi <- input$weight/((input$height/100)* (input$height/100))
bmi <- ((input$weight / (input$height * input$height)) * 703)
Uses “Leaflet” library to display the map.