In this thread ( GADM-Maps cross-country comparision graphics ) Gavin Simpson helped me to merge multiple Maps from GADM to one object that can be plotted.
But how can I now access one part of the spatial polygons data frame - for instance how could I change the color of one country?
Additional question (I don't really need that now, but maybe I can learn something): Why does the solution I posted in the former thread only work with level 0? Is there a way to make it also work with other levels?
[edit]
answers below show how to change colors.
to access one of the rows int the spatial polygons data frame one can use
> row.names(df)
# outputs the accessable rows
# e.g. [1] "ARG" "CHL"
> plot(df["ARG",])
# plots just Argentina