Dear All

Is it possible to display in the STATA output full labels . For example consider my dataset as given below.


----------------------- copy starting from the next line -----------------------
Code:
* Example generated by -dataex-. To install: ssc install dataex
clear
input int ee14
 1
 1
 1
 1
 1
 1
 1
 1
 1
 7
 7
99
86
86
85
86
49
 1
84
84
84
84
84
84
84
84
84
84
84
84
84
84
84
84
84
84
84
84
84
84
41
41
41
41
74
74
74
 1
 1
 1
 1
 1
 1
 1
 1
 1
 1
 1
 1
 1
85
 1
85
 1
 1
85
 1
 1
 1
 1
 1
 1
 1
 1
 1
 1
 1
 1
 1
 1
 1
 1
 1
14
84
84
84
84
84
84
84
84
84
84
84
84
84
84
84
84
end
label values ee14 ee14
label def ee14 1 "Crop and animal production, hunting and related service activities", modify
label def ee14 7 "Mining of metal ores", modify
label def ee14 14 "Manufacture of wearing apparel", modify
label def ee14 41 "Construction of buildings", modify
label def ee14 49 "Land transport and transport via pipelines", modify
label def ee14 74 "Other professional, scientific and technical activities", modify
label def ee14 84 "Public administration and defence; compulsory social security", modify
label def ee14 85 "Education", modify
label def ee14 86 "Human health activities", modify
label def ee14 99 "Activities of extraterritorial organizations and bodies", modify
------------------ copy up to and including the previous line ------------------


when I write tab ee14 I get a table with longer labels cut off. Is it possible to display the full label rather than only half.

Thank you