I am doing lots of statistical analysis on county basis in R for US. But I want to do some studies for India as well. I have found state map, but no district map in R. I can find such things in d3.js but I would rather not abandon R.
Is there a R package for India that is similar to 'maps'.
You can use data from GADM which contains shapefiles on different levels of administrative division so also district level which is level 2 I guess. You can use the script below to directly load the data, code is taken from here.
So in your case you would run:
Just to check, plot the data:
Alternatively you can use GAUL data and load the shapefile using
maptools
.Code to get data.