Differences between revisions 2 and 5 (spanning 3 versions)
Revision 2 as of 2022-09-25 20:11:02
Size: 319
Comment:
Revision 5 as of 2023-06-08 01:06:10
Size: 341
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Stata Graphing = = Stata Graph =

The '''`graph`''' command generates an external graph file.
Line 9: Line 11:
== Graphs == == Usage ==
Line 12: Line 14:
graph hbar VAR, over(GROUPVAR1) over(GROUPVAR2) asyvars graph hbar foo, over(bar) over(baz) asyvars
Line 20: Line 22:
== Tables == == See also ==
Line 22: Line 24:
{{{
regress OUTCOME TREATMENTS
estimates store foo
estimates table foo, b(%10.3f) star
}}}
[[https://www.stata.com/manuals/dgraph.pdf|Stata manual for graph]]

Stata Graph

The graph command generates an external graph file.


Usage

graph hbar foo, over(bar) over(baz) asyvars
graph export foo.png


See also

Stata manual for graph


CategoryRicottone

Stata/Graph (last edited 2023-06-08 01:06:10 by DominicRicottone)