Hi,

I would like to rename my variable just in a tab. I don't want to create a new variable or rename the variable

For example :

Code:
* Example generated by -dataex-. To install: ssc install dataex
clear
input float(age x1) str6 x2
15 1 "a"
16 1 "a"
20 0 "a"
25 1 "a"
14 0 "a"
 2 0 "b"
10 1 "b"
19 0 "b"
16 0 "b"
21 1 "b"
end
tab x1 x2 if age<18, chi
In the table i would like to get "x1 if age<18" in the first corner, is it possible?

Thanks !