Differences between revisions 1 and 4 (spanning 3 versions)
Revision 1 as of 2022-09-25 20:10:54
Size: 305
Comment:
Revision 4 as of 2023-06-07 21:03:52
Size: 240
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 18: Line 20:
== Tables ==

{{{
regress OUTCOME TREATMENTS
estimates store foo
estimates table foo, b(%10.3f) star
}}}

Stata Graph

The graph command generates an external graph file.


Usage

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


CategoryRicottone

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