library(geodata)
ct_shp <- geodata::gadm('USA', level = 0, path=".")
plot(ct_shp)
When I plot the USA, I get this.
Any raster I plot for US using this shapefile as a basemap becomes really small. The only solution I have is to crop out polygons greater than 100 degrees longitude so that I get a bigger map of US and I can plot any US specifc raster for more appealing maps. I wondered if there's anyone who faces such issue and how they have dealt with it.

