Differences between revisions 1 and 5 (spanning 4 versions)
Revision 1 as of 2022-09-25 20:10:54
Size: 305
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 16: Line 18:
----
Line 18: Line 21:
== Tables ==
Line 20: Line 22:
{{{
regress OUTCOME TREATMENTS
estimates store foo
estimates table foo, b(%10.3f) star
}}}
== See also ==

[[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)