I stumbled upon this question about including both country dummies and continent dummies.
AlexK comments: "Well, to be precise: let's say North America (continent) includes Canada, U.S. and Mexico. If you included all three countries as dummies, then the "North America" dummy would be perfectly collinear with those 3 country dummies and its coefficient could not be estimated. This is because for all observations in North America, the value of "North America" would just be the sum of values in three country dummies. If you have a continent dummy that is not exhaustive of the country dummies for that continent, then you would not have this issue for that continent."
As far as perfectly collinearity goes, that is clear and makes sense. He then suggests to "remove one country on each continent, in addition to removing one continent." I am wondering if this would be a logical idea (apart from solving the a dummy variable trap) because of the following:
If you were to run the regression
$$y_i = B_0 + B_1countryDummies + B_2continentDummies + u$$
The software package is going to throw out two coefficients due to perfect collinearity. In Stata, you can choose which it throws out by altering the order. So by doing:
$$y_i = B_0 + B_1countryDummies + B_2continentDummies + u$$
Two of the continents are thrown out. If you do:
$$y_i = B_0 + B_1countryDummies + B_2continentDummies + u$$
Two countries are thrown out. Now the interesting things (which I should have maybe already realised) is that, when you look at the coefficients, the coefficients of $continent$ for the levels which are not thrown out will be exactly the same as the coefficients on the $countries$ when they are not thrown out.
Now I know that AlexK suggests to throw more variables out. Actually, one continent and a country for each continent.
What is achieved by AlexK's suggestion?
And what is now picked up by the variable $continent$ if we assume that $y_i$ is income for example?
In other words, if you are already controlling for country effects, what would there be left to be controlled for at the continental level?