Hi,
I'm constructing plots for different variables using a loop. There is one observation per country. For each variable I want to plot there are certain, different, outliers which I would like to drop before I plot. E.g. if I plot GDP I would like to drop the observation for Malta. How can I implement this in the following loop?
foreach var2 in GDP LABOR WAGE {
graph twoway scatter `var2' h2m
}
I'm constructing plots for different variables using a loop. There is one observation per country. For each variable I want to plot there are certain, different, outliers which I would like to drop before I plot. E.g. if I plot GDP I would like to drop the observation for Malta. How can I implement this in the following loop?
foreach var2 in GDP LABOR WAGE {
graph twoway scatter `var2' h2m
}
Comment