Announcement

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

  • Graphic

    Hello guys,

    I have some firms data from 2010 to 2018 and I defined zombie firm by

    gen zombie = (l2.icr <1 & l1.icr < 1 & icr < 1)
    gen Zombie = (l2.icr <1 & l1.icr < 1 & icr< 1 & age > 10)
    where
    icr = iterest covarage ratio

    Then I executed "tabstat zombie, by(year)" and gave the mean of zombie firms by each year, like in the attachment. How can I do a Bar Chart or Histogram like that? Can I put both zombie and Zombie on the graphic?

    Thank you in advance
    Attached Files

  • #2
    Code:
    graph bar Zombie zombie, over(year)

    Comment


    • #3
      Thank you! That worked perfectly!

      Comment

      Working...
      X