Announcement

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

  • can we add the values to the bar

    Code:
    * Example generated by -dataex-. For more info, type help dataex
    clear
    input int Year byte(Total Female) float group
    2001 56 8 2
    2003 58 0 2
    2005 51 1 2
    2007 29 0 2
    2009 35 5 2
    2011 51 1 2
    2013 53 2 2
    2015 61 9 2
    2017 61 3 2
    2019 64 6 2
    2021 65 5 2
    2001 81 1 1
    2003 58 2 1
    2005 50 4 1
    2007 33 1 1
    2009 48 0 1
    2011 54 0 1
    2013 50 3 1
    2015 70 3 1
    2017 67 4 1
    2019 75 6 1
    2021 84 6 1
    end
    graph bar Total Female ,over(Year,label(angle(60) )) over(group)
    I want to add the values to each bar, can we?

  • #2
    See the documented option blabel(total)

    Comment


    • #3
      Thanks so much!

      Comment

      Working...
      X