Plottingstata
Plottingstata
Page 1
Stata_plotting - Printed on 7/4/2023 10:27:44 PM
64 sysuse auto
65 twoway (scatter mpg weight) (lfit mpg weight)
66
67 * OR
68 twoway scatter mpg weight || lfit mpg weight
69
70 * editing legend (options for each graph)
71 twoway (scatter mpg weight, legend(label(1 "MPG"))) ///
72 (lfit mpg weight, legend(label(2 "Line of best fit")))
73
74 * Options for whole graph changing overall color schemes
75 twoway (scatter mpg headroom, legend(label(1 "head room"))) ///
76 (scatter mpg trunk, legend(label(2 "trunk room"))), scheme(s1mono)
77
78 **************************************************************
79 * Boxplots
80 **************************************************************
81
82
83 webuse bpwide
84 graph box bp_before bp_after
85
86
87 **************************************************************
88 *** Bar graphs
89 **************************************************************
90
91
92 webuse citytemp
93 graph bar tempjan, over(region) // necessary. what are the groups you are interested in seeing.
94
95 * if you want to add labels
96 webuse citytemp
97 graph bar tempjan, over(region) blabel(total)
98
99
100
101
Page 2