July 19, 2018

App Introduction

  • India Unemployment Rate Application shows the unemployment rate per 1000 persons in Indian states
  • This Interactive map is produced from the Indian Goverments data set
  • Lattitude and Longitude data is added for each state for showing the unemployment rate based on the selection

Where to find the app

How to select the states

-Enter the name of the state in the text box and press return. Selected state will be shown in the map

  • State Names are Goa, Kerala , Bihar, Tamil nadu, Haryana and so on …. Should be entered with right case an spaces

  • Click the marker to know the state name and unemployment rates

Sample State slection

library(leaflet)
m<- leaflet() %>%
 addTiles() %>%
  setView(lng=76.27, lat=10.85, zoom=5 ) %>%
  addMarkers(lng = 76.27,
             lat = 10.85,
             popup = paste("State ", "Kerala", "<br>",
                           "Unemployment Rate:", "67 per 1000 persons"))

m