Dear Statalist

I have a figure that kind of looks like this (for code see below):
Array

A reviewer is now saying -- and I see their point -- that I should plot no. 3 with a different, say log axis scaling. Is there any way to do this within the -twoway, by()- option framework?

I can imagine doing what the reviewer wants with -graph combine-, but unlike the example I have given, my actual figure is very large and complex and I can already see that going the -graph combine- route will be a total nightmare leading to results that no one will be happy with.

Thanks
Klaus

Code:
clear
input id x y
1 1 .1
1 2 .2
1 3 .3
2 1 .3
2 2 .2
2 3 .3
3 1 .008
3 2 .08
3 3 .8
end

twoway line y x, by(id, col(3))