Hi all,
I wondering if its possible use lab position using 2 diferents filter, example:

My goal its use filters to lab position, do you know if its possible?, example:
Thanks in advance.
Rodrigo
I wondering if its possible use lab position using 2 diferents filter, example:
Code:
clear all set more off sysuse auto collapse mpg, by(rep78) drop if missing(rep78) scatter mpg rep78, /// c(l) sort /// mlabel(mpg) /// mlabposition(6)
My goal its use filters to lab position, do you know if its possible?, example:
Code:
scatter mpg rep78, /// c(l) sort /// mlabel(mpg) /// mlabposition(12 if rep78> 2) /// mlabposition(6 if rep78< 2)
Rodrigo
Comment