R newbie here.
If I first use map('state'), how can I then use map('county', ylim=..., xlim=...) but offset it like this:

Right now, I am using imagemagick’s composite -gravity southwest ... to combine 2 PNG files, but this seems less than ideal.
You can use the
figoption in a graphics parameter call to set the region where a figure will be plotted.In regards to the other code,
xpd=NAlets you plot in the margins of a plot whilenew=TRUEmakes sure you don’t scrap the existing plot when starting a new plot. Addingadd=TRUEto the end of the plot for the county acts similarly to thenew=TRUEcall.