You are not logged in. You can browse but not post. Login or Register by clicking 'Login or Register' at the top-right of this page. For more information on Statalist, see the FAQ.
Please read FAQ Advice #12 on attachments encouraged and discouraged (including MS Office).
On the face of it you have some variable varying from -0.1 to 0.1 with a concentration of values very near 0. You might try looking at logarithm of density and/or transforming the variable, say with asinh(k x) for large k or cube root.
Code:
. twoway function asinh(1000 * x), ra(-0.1 0.1)
. twoway function sign(x) * abs(x)^(1/3), ra(-0.1 0.1)
Comment