Differences between revisions 3 and 5 (spanning 2 versions)
Revision 3 as of 2023-06-07 21:03:05
Size: 360
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:
## page was renamed from Stata/Graphing
= Stata Graphing =
= Stata Graph =

The '''`graph`''' command generates an external graph file.
Line 10: Line 11:
== Graphs == == Usage ==
Line 13: Line 14:
graph hbar VAR, over(GROUPVAR1) over(GROUPVAR2) asyvars graph hbar foo, over(bar) over(baz) asyvars
Line 21: Line 22:
== Tables == == See also ==
Line 23: 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)