what if I don't want grey lines to appear in grunfield data, let suppose I want only orange line to appear,
-
Login or Register
- Log in with
webuse grunfeld, clear fabplot line invest year, by(company) ysc(log) yla(1 10 100 1000)
... if company <= 4
fabplot line invest year, by(company) ysc(log) yla(1 10 100 1000) select(company <= 4) xla(, format(%tyYY)) xtitle("") frontopts(lw(thick))
webuse grunfeld fabplot lfit invest year, by(company) frontopts(lw(thick)) select(company <= 4) xla(, grid)
fabplot (scatter totasset_ecpc agegrp) (lfit totasset_ecpc agegrp), by(wave)
fabplot scatter totasset_ecpc agegrp || lfit totasset_ecpc agegrp, by(wave)
Comment