Differences between revisions 3 and 4
Revision 3 as of 2023-06-07 21:03:05
Size: 360
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:
## 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 15: Line 16:
}}}

----



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