Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Plotting and axis management

    Obviously this plot should be at least at x axis be changed in measurement units. How can be more readable ?
    Last edited by Theofanis Nikolopoulos; 28 May 2023, 13:27.

  • #2
    ​​​​​​The above question has to do with the attached file
    Attached Files

    Comment


    • #3
      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

      Working...
      X