Announcement

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

  • Bar error in Stata 17

    Hy everyone, i want to put on my graph some error bar. I know it's impossible to put error if i use graph bar. If someone can help me please.
    This is my code: graph bar (mean) call, over(Sexe) over(couleur) bar(1,color(green)) title("Répartition des taux de réponse") blabel(bar,format(%9.2f)) ytitle("taux de réponse")

  • #2
    Hey Goro,

    please provide data using dataex such that one can replicate your problem. Instead of using graph bar you may want to use something like this:

    Code:
    statsby, by(couleur) clear: ci means call
    twoway (bar call couleur) (rcap couleur lb ub)
    Best,
    Sebastian

    Comment

    Working...
    X