Skip to content

Instantly share code, notes, and snippets.

@bbdaniels
Created October 26, 2022 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bbdaniels/9300f2b19cf4c57202af26b42d19f5bb to your computer and use it in GitHub Desktop.
Save bbdaniels/9300f2b19cf4c57202af26b42d19f5bb to your computer and use it in GitHub Desktop.
Percent signs in graph bar in stata
local nb=`.Graph.plotregion1.barlabels.arrnels'
forval i=1/`nb' {
di "`.Graph.plotregion1.barlabels[`i'].text[1]'"
.Graph.plotregion1.barlabels[`i'].text[1]="`.Graph.plotregion1.barlabels[`i'].text[1]'%"
}
.Graph.drawgraph
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment