+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myscatter.png
+ saved as PNG format
@@ -342,7 +345,7 @@
Continuous by Categorical (graph bar y, over(x))
Schemes (,scheme(...))
Stata graph schemes can substantially change the look of a
graph. Built in graph schemes include s1color, the new
-default scheme stcolor the older default scheme
+default scheme stcolor, the older default scheme
s2color, sj, economist and
s1rcolor.
lean2 (type findit lean2 in the Stata
@@ -398,8 +401,8 @@
. graphexport mybarM.png, width(1000) replace
-file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarM.png saved as
- PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarM.png saved
+as PNG format
@@ -435,8 +439,8 @@
Continuous by Categorical
class="sourceCode stata">. graphbar height, over(location) asyvars title("Tree Height by Location") scheme(lean2)
. graphexport mybarL.png, width(1000) replace
-file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarL.png saved as
- PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarL.png saved
+as PNG format
@@ -447,8 +451,8 @@
Continuous by Categorical
class="sourceCode stata">. graphbar height, over(location) asyvars title("Tree Height by Location") scheme(s1color)
. graphexport mybarS.png, width(1000) replace
-file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarS.png saved as
- PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarS.png saved
+as PNG format
@@ -456,12 +460,12 @@
Continuous by Categorical
s1color Graph Scheme
. graphbar height, over(location) asyvars title("Tree Height by Location") scheme(burd) gra
-> phregion(lcolor(none))
+class="sourceCode stata">. graphbar height, over(location) asyvars title("Tree Height by Location") scheme(burd) gr
+> aphregion(lcolor(none))
. graphexport mybarB.png, width(1000) replace
-file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarB.png saved as
- PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarB.png saved
+as PNG format
diff --git a/data-visualization-with-Stata/data-visualization-with-Stata.html b/data-visualization-with-Stata/data-visualization-with-Stata.html
index f2b9b95..8783e54 100644
--- a/data-visualization-with-Stata/data-visualization-with-Stata.html
+++ b/data-visualization-with-Stata/data-visualization-with-Stata.html
@@ -1,12 +1,175 @@
-
-
+
+
-
-
+
+
Data Visualization With Stata
-
+
+
-
+
Data Visualization With Stata
-
Andy Grogan-Kaylor
-
10 May 2024
-
+
Andy Grogan-Kaylor
+
10 May 2024
+
Introduction
-
Stata is a powerful and intuitive data analysis program. Learning how to graph in Stata is an important part of learning how to use Stata. Yet, until recently, the default graphs in Stata have been less than optimal. However, recent versions of Stata have a very professional looking and aesthetically appealing default graph scheme.
+
Stata is a powerful and intuitive data analysis program. Learning how
+to graph in Stata is an important part of learning how to use Stata.
+Yet, until recently, the default graphs in Stata have been less than
+optimal. However, recent versions of Stata have a very professional
+looking and aesthetically appealing default graph scheme.
-
This document is an introduction to (a) basic graphing ideas in Stata; and (b) a quick note on the use of schemes to customize your Stata graphs.
+
This document is an introduction to (a) basic graphing ideas in
+Stata; and (b) a quick note on the use of schemes to customize your
+Stata graphs.
-
When this document is presented in slide show format, some slides may be long, and you may need to scroll down to see the full slide.
+
When this document is presented in slide show format, some
+slides may be long, and you may need to scroll down to see the
+full slide.
What are Variables?
By variables, I simply mean the columns of data that you have.
-
For our purposes, you may think of variables as synonymous with questionnaire items, or columns of data.
+
For our purposes, you may think of variables as synonymous with
+questionnaire items, or columns of data.
-
-
Column 1
-
Column 2
-
Column 3
+
+
Column 1
+
Column 2
+
Column 3
-
Row 1
-
-
-
+
Row 1
+
+
+
-
Row 2
-
-
-
+
Row 2
+
+
+
-
Row 3
-
-
-
+
Row 3
+
+
+
Variable Types
-
Categorical variables represent unordered categories like race, ethnicity, neighborhood, religious affiliation, or place of residence.
-
Continuous variables represent a continuous scale like income, a mental health scale, or a measure of life expectancy.
+
Categorical variables represent unordered categories like
+race, ethnicity, neighborhood, religious
+affiliation, or place of residence.
+
Continuous variables represent a continuous scale like
+income, a mental health scale, or a measure of
+life expectancy.
-
A Data Visualization Strategy
-
Once we have discerned the type of variable that have, there are two followup questions we may ask before deciding upon a graphing strategy:
+
A Data Visualization
+Strategy
+
Once we have discerned the type of variable that have, there are two
+followup questions we may ask before deciding upon a graphing
+strategy:
. graph export myhistogram.png, width(1000) replace
-file myhistogram.png saved as PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myhistogram.png
+ saved as PNG format
-
{width=50%}
-
One Categorical Thing At A Time (graph bar, over(x))
+
+
+Histogram Of Tree Height
+
+
One Categorical
+Thing At A Time (graph bar, over(x))
. graph bar, over(location) title("Tree Location")
. graph export mybargraph.png, width(1000) replace
-file mybargraph.png saved as PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybargraph.png
+ saved as PNG format
-
{width=50%}
-
Continuous by Continuous (twoway scatter y x)
+
+
+Bar Graph Of Tree Location
+
+
Continuous by
+Continuous (twoway scatter y x)
. twoway scatter height age_base, title("Tree Height by Age")
. graph export myscatter.png, width(1000) replace
-file myscatter.png saved as PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myscatter.png
+ saved as PNG format
-
{width=50%}
-
Categorical by Categorical (graph bar, over(x) over(y))
+
+
+Scatterplot Of Tree Height By
+Age
+
+
Categorical by
+Categorical (graph bar, over(x) over(y))
. graph bar, over(site) over(location) title("Tree Site Growth Quality by Location")
. graph export mybargraph2.png, width(1000) replace
-file mybargraph2.png saved as PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybargraph2.png
+ saved as PNG format
-
{width=50%}
-
Continuous by Categorical (graph bar y, over(x))
+
+
+Bar Graph Of Tree Site By
+Location
+
+
Continuous by
+Categorical (graph bar y, over(x))
. graph bar height, over(location) title("Tree Height by Location")
. graph export mybargraph3.png, width(1000) replace
-file mybargraph3.png saved as PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybargraph3.png
+ saved as PNG format
-
{width=50%}
+
+
+Bar Graph Of Mean Tree Height By
+Location
+
Schemes (,scheme(...))
-
Stata graph schemes can substantially change the look of a graph. Built in graph schemes include s1color, the new default scheme stcolor, the older default scheme s2color, sj, economist and s1rcolor.
-
lean2 (type findit lean2 in the Stata Command Window) is a user written scheme that is very helpful when preparing graphics for publication. I have written a Stata Michigan graph scheme that can be installed. cleanplots and modern are excellent graph schemes that can be installed directly into Stata from GitHub. burd is another user written graph scheme that somewhat replicates the look of ggplot. Asjad Naqvi has written an excellent and comprehensive set of Stata graph schemes.
-
Continuous by Continuous (twoway scatter y x, scheme(...))
+
Stata graph schemes can substantially change the look of a
+graph. Built in graph schemes include s1color, the new
+default scheme stcolor, the older default scheme
+s2color, sj, economist and
+s1rcolor.
+
lean2 (type findit lean2 in the Stata
+Command Window) is a user written scheme that is very helpful when
+preparing graphics for publication. I have written a Stata Michigan graph scheme
+that can be installed. cleanplots and modern
+are excellent graph schemes that can be installed directly into Stata
+from GitHub. burd is another user written graph scheme that
+somewhat replicates the look of ggplot. Asjad
+Naqvi has written an excellent and
+comprehensive set of Stata graph schemes.
+
Continuous by
+Continuous (twoway scatter y x, scheme(...))
. twoway scatter height age_base, title("Tree Height by Age") scheme(michigan)
. graph export myscatterM.png, width(1000) replace
-file myscatterM.png saved as PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myscatterM.png
+ saved as PNG format
-
{width=50%}
+
+
+Scatterplot Of Tree Height By Age With
+Michigan Graph Scheme
+
. graph export myscatterL.png, width(1000) replace
-file myscatterL.png saved as PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myscatterL.png
+ saved as PNG format
-
{width=50%}
+
+
+Scatterplot Of Tree Height By Age With
+lean2 Graph Scheme
+
. twoway scatter height age_base, title("Tree Height by Age") scheme(s1color)
. graph export myscatterS.png, width(1000) replace
-file myscatterS.png saved as PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myscatterS.png
+ saved as PNG format
-
{width=50%}
-
. twoway scatter height age_base, title("Tree Height by Age") scheme(burd) msymbol(o) graphregion(lc
-> olor(none))
+
+
+Scatterplot Of Tree Height By Age With
+s1color Graph Scheme
+
+
. graph export myscatterB.png, width(1000) replace
-file myscatterB.png saved as PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myscatterB.png
+ saved as PNG format
-
{width=50%}
-
Continuous by Categorical (graph bar y, over(x) scheme(...))
+
+
+Scatterplot Of Tree Height By Age With
+burd Graph Scheme
+
+
Continuous by
+Categorical (graph bar y, over(x) scheme(...))
-
Note that in the graph below, I have used the asyvars option to give different colors to the different bars.
+
Note that in the graph below, I have used the asyvars
+option to give different colors to the different bars.
-
. graph bar height, over(location) asyvars title("Tree Height by Location") scheme(michigan)
+
. graph bar height, over(location) asyvars title("Tree Height by Location") scheme(michigan
+> )
. graph export mybarM.png, width(1000) replace
-file mybarM.png saved as PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarM.png saved
+ as PNG format
-
{width=50%}
+
+
+Bar Graph Of Mean Tree Height By Location
+With Michigan Graph Scheme
+
. graph bar height, over(location) asyvars title("Tree Height by Location") scheme(lean2)
. graph export mybarL.png, width(1000) replace
-file mybarL.png saved as PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarL.png saved
+ as PNG format
-
{width=50%}
+
+
+Bar Graph Of Mean Tree Height By Location
+With lean2 Graph Scheme
+
. graph bar height, over(location) asyvars title("Tree Height by Location") scheme(s1color)
. graph export mybarS.png, width(1000) replace
-file mybarS.png saved as PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarS.png saved
+ as PNG format
-
{width=50%}
-
. graph bar height, over(location) asyvars title("Tree Height by Location") scheme(burd) graphregion
-> (lcolor(none))
+
+
+Bar Graph Of Mean Tree Height By Location
+With s1color Graph Scheme
+
+
. graph bar height, over(location) asyvars title("Tree Height by Location") scheme(burd) gr
+> aphregion(lcolor(none))
. graph export mybarB.png, width(1000) replace
-file mybarB.png saved as PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarB.png saved
+ as PNG format
-
{width=50%}
+
+
+Bar Graph Of Mean Tree Height By Location
+With burd Graph Scheme
+
diff --git a/data-visualization-with-Stata/data-visualization-with-Stata.pdf b/data-visualization-with-Stata/data-visualization-with-Stata.pdf
index bc18271..6ae4205 100644
Binary files a/data-visualization-with-Stata/data-visualization-with-Stata.pdf and b/data-visualization-with-Stata/data-visualization-with-Stata.pdf differ
diff --git a/data-visualization-with-Stata/data-visualization-with-Stata.smcl b/data-visualization-with-Stata/data-visualization-with-Stata.smcl
index cc54621..d60f403 100644
--- a/data-visualization-with-Stata/data-visualization-with-Stata.smcl
+++ b/data-visualization-with-Stata/data-visualization-with-Stata.smcl
@@ -1,9 +1,9 @@
{smcl}
{com}{sf}{ul off}{txt}{.-}
name: {res}
- {txt}log: {res}C:\Users\agrogan\Desktop\GitHub\Stata\data-visualization-with-Stata\data-visualization-with-Stata.smcl
+ {txt}log: {res}/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/data-visualization-with-Stata.smcl
{txt}log type: {res}smcl
- {txt}opened on: {res}10 May 2024, 14:05:13
+ {txt}opened on: {res}10 May 2024, 14:09:09
{txt}
{com}. //_1
. display c(current_date)
@@ -26,7 +26,7 @@
. graph export myhistogram.png, width(1000) replace
{txt}{p 0 4 2}
file {bf}
-myhistogram.png{rm}
+/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myhistogram.png{rm}
saved as
PNG
format
@@ -39,7 +39,7 @@ format
. graph export mybargraph.png, width(1000) replace
{txt}{p 0 4 2}
file {bf}
-mybargraph.png{rm}
+/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybargraph.png{rm}
saved as
PNG
format
@@ -52,7 +52,7 @@ format
. graph export myscatter.png, width(1000) replace
{txt}{p 0 4 2}
file {bf}
-myscatter.png{rm}
+/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myscatter.png{rm}
saved as
PNG
format
@@ -65,7 +65,7 @@ format
. graph export mybargraph2.png, width(1000) replace
{txt}{p 0 4 2}
file {bf}
-mybargraph2.png{rm}
+/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybargraph2.png{rm}
saved as
PNG
format
@@ -78,7 +78,7 @@ format
. graph export mybargraph3.png, width(1000) replace
{txt}{p 0 4 2}
file {bf}
-mybargraph3.png{rm}
+/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybargraph3.png{rm}
saved as
PNG
format
@@ -91,7 +91,7 @@ format
. graph export myscatterM.png, width(1000) replace
{txt}{p 0 4 2}
file {bf}
-myscatterM.png{rm}
+/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myscatterM.png{rm}
saved as
PNG
format
@@ -104,7 +104,7 @@ format
. graph export myscatterL.png, width(1000) replace
{txt}{p 0 4 2}
file {bf}
-myscatterL.png{rm}
+/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myscatterL.png{rm}
saved as
PNG
format
@@ -117,7 +117,7 @@ format
. graph export myscatterS.png, width(1000) replace
{txt}{p 0 4 2}
file {bf}
-myscatterS.png{rm}
+/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myscatterS.png{rm}
saved as
PNG
format
@@ -130,7 +130,7 @@ format
. graph export myscatterB.png, width(1000) replace
{txt}{p 0 4 2}
file {bf}
-myscatterB.png{rm}
+/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myscatterB.png{rm}
saved as
PNG
format
@@ -143,7 +143,7 @@ format
. graph export mybarM.png, width(1000) replace
{txt}{p 0 4 2}
file {bf}
-mybarM.png{rm}
+/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarM.png{rm}
saved as
PNG
format
@@ -156,7 +156,7 @@ format
. graph export mybarL.png, width(1000) replace
{txt}{p 0 4 2}
file {bf}
-mybarL.png{rm}
+/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarL.png{rm}
saved as
PNG
format
@@ -169,7 +169,7 @@ format
. graph export mybarS.png, width(1000) replace
{txt}{p 0 4 2}
file {bf}
-mybarS.png{rm}
+/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarS.png{rm}
saved as
PNG
format
@@ -182,7 +182,7 @@ format
. graph export mybarB.png, width(1000) replace
{txt}{p 0 4 2}
file {bf}
-mybarB.png{rm}
+/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/mybarB.png{rm}
saved as
PNG
format
@@ -191,9 +191,9 @@ format
{com}. //_^
. log close
{txt}name: {res}
- {txt}log: {res}C:\Users\agrogan\Desktop\GitHub\Stata\data-visualization-with-Stata\data-visualization-with-Stata.smcl
+ {txt}log: {res}/Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/data-visualization-with-Stata.smcl
{txt}log type: {res}smcl
- {txt}closed on: {res}10 May 2024, 14:05:30
+ {txt}closed on: {res}10 May 2024, 14:09:43
{txt}{.-}
{smcl}
{txt}{sf}{ul off}
\ No newline at end of file
diff --git a/data-visualization-with-Stata/mybarB.png b/data-visualization-with-Stata/mybarB.png
index bb03994..7b8b847 100644
Binary files a/data-visualization-with-Stata/mybarB.png and b/data-visualization-with-Stata/mybarB.png differ
diff --git a/data-visualization-with-Stata/mybarL.png b/data-visualization-with-Stata/mybarL.png
index 859e8a0..2eebb0a 100644
Binary files a/data-visualization-with-Stata/mybarL.png and b/data-visualization-with-Stata/mybarL.png differ
diff --git a/data-visualization-with-Stata/mybarM.png b/data-visualization-with-Stata/mybarM.png
index b340ddd..33da956 100644
Binary files a/data-visualization-with-Stata/mybarM.png and b/data-visualization-with-Stata/mybarM.png differ
diff --git a/data-visualization-with-Stata/mybarS.png b/data-visualization-with-Stata/mybarS.png
index 6e155c5..2a699c2 100644
Binary files a/data-visualization-with-Stata/mybarS.png and b/data-visualization-with-Stata/mybarS.png differ
diff --git a/data-visualization-with-Stata/mybargraph.png b/data-visualization-with-Stata/mybargraph.png
index c0f6fa9..fbc2c10 100644
Binary files a/data-visualization-with-Stata/mybargraph.png and b/data-visualization-with-Stata/mybargraph.png differ
diff --git a/data-visualization-with-Stata/mybargraph2.png b/data-visualization-with-Stata/mybargraph2.png
index aadb25f..0295850 100644
Binary files a/data-visualization-with-Stata/mybargraph2.png and b/data-visualization-with-Stata/mybargraph2.png differ
diff --git a/data-visualization-with-Stata/mybargraph3.png b/data-visualization-with-Stata/mybargraph3.png
index 975d4f3..c42e552 100644
Binary files a/data-visualization-with-Stata/mybargraph3.png and b/data-visualization-with-Stata/mybargraph3.png differ
diff --git a/data-visualization-with-Stata/myhistogram.png b/data-visualization-with-Stata/myhistogram.png
index a792678..a7491de 100644
Binary files a/data-visualization-with-Stata/myhistogram.png and b/data-visualization-with-Stata/myhistogram.png differ
diff --git a/data-visualization-with-Stata/myscatter.png b/data-visualization-with-Stata/myscatter.png
index f5d41aa..f93265a 100644
Binary files a/data-visualization-with-Stata/myscatter.png and b/data-visualization-with-Stata/myscatter.png differ
diff --git a/data-visualization-with-Stata/myscatterB.png b/data-visualization-with-Stata/myscatterB.png
index 4304375..2d6ad07 100644
Binary files a/data-visualization-with-Stata/myscatterB.png and b/data-visualization-with-Stata/myscatterB.png differ
diff --git a/data-visualization-with-Stata/myscatterL.png b/data-visualization-with-Stata/myscatterL.png
index f28aaaa..a5a38c4 100644
Binary files a/data-visualization-with-Stata/myscatterL.png and b/data-visualization-with-Stata/myscatterL.png differ
diff --git a/data-visualization-with-Stata/myscatterM.png b/data-visualization-with-Stata/myscatterM.png
index 1eee513..d3a1ecc 100644
Binary files a/data-visualization-with-Stata/myscatterM.png and b/data-visualization-with-Stata/myscatterM.png differ
diff --git a/data-visualization-with-Stata/myscatterS.png b/data-visualization-with-Stata/myscatterS.png
index 0874154..62427b2 100644
Binary files a/data-visualization-with-Stata/myscatterS.png and b/data-visualization-with-Stata/myscatterS.png differ
diff --git a/stata-graphing/econscatter.png b/stata-graphing/econscatter.png
index a16ac06..9b5c4ae 100644
Binary files a/stata-graphing/econscatter.png and b/stata-graphing/econscatter.png differ
diff --git a/stata-graphing/graphtitleslabels.png b/stata-graphing/graphtitleslabels.png
index 6cc8f60..811e5ab 100644
Binary files a/stata-graphing/graphtitleslabels.png and b/stata-graphing/graphtitleslabels.png differ
diff --git a/stata-graphing/index.html b/stata-graphing/index.html
index 4f42891..9680186 100644
--- a/stata-graphing/index.html
+++ b/stata-graphing/index.html
@@ -1,43 +1,6 @@
-
@@ -45,9 +8,6 @@
Data Visualization With Stata
+
Data Visualization With Stata
Andy Grogan-Kaylor
-
26 Apr 2022 09:54:18
+
10 May 2024 14:15:35
Introduction
diff --git a/stata-graphing/index.pdf b/stata-graphing/index.pdf
index 054eeef..c06e53f 100644
Binary files a/stata-graphing/index.pdf and b/stata-graphing/index.pdf differ
diff --git a/stata-graphing/index.smcl b/stata-graphing/index.smcl
index d4e3c87..199c2df 100644
--- a/stata-graphing/index.smcl
+++ b/stata-graphing/index.smcl
@@ -1,17 +1,17 @@
{smcl}
-{txt}{sf}{ul off}{.-}
+{com}{sf}{ul off}{txt}{.-}
name: {res}
{txt}log: {res}/Users/agrogan/Desktop/GitHub/Stata/stata-graphing/index.smcl
{txt}log type: {res}smcl
- {txt}opened on: {res}26 Apr 2022, 09:54:18
+ {txt}opened on: {res}10 May 2024, 14:15:35
{txt}
{com}. //_1
. display c(current_date)
-{res}26 Apr 2022
+{res}10 May 2024
{txt}
{com}. //_2
. display c(current_time)
-{res}09:54:18
+{res}14:15:35
{txt}
{com}. //_3
. use "iris.dta", clear
@@ -138,7 +138,7 @@ symbol, default attributes used)
{txt}name: {res}
{txt}log: {res}/Users/agrogan/Desktop/GitHub/Stata/stata-graphing/index.smcl
{txt}log type: {res}smcl
- {txt}closed on: {res}26 Apr 2022, 09:54:38
+ {txt}closed on: {res}10 May 2024, 14:15:56
{txt}{.-}
{smcl}
{txt}{sf}{ul off}
\ No newline at end of file
diff --git a/stata-graphing/lean2Ascatter.png b/stata-graphing/lean2Ascatter.png
index 6c4b833..2c8f155 100644
Binary files a/stata-graphing/lean2Ascatter.png and b/stata-graphing/lean2Ascatter.png differ
diff --git a/stata-graphing/lean2scatter.png b/stata-graphing/lean2scatter.png
index cde3e56..d0b2bbc 100644
Binary files a/stata-graphing/lean2scatter.png and b/stata-graphing/lean2scatter.png differ
diff --git a/stata-graphing/michiganscatter.png b/stata-graphing/michiganscatter.png
index 5891ed4..4118737 100644
Binary files a/stata-graphing/michiganscatter.png and b/stata-graphing/michiganscatter.png differ
diff --git a/stata-graphing/mybargraph.png b/stata-graphing/mybargraph.png
index ff9b77d..b9ef542 100644
Binary files a/stata-graphing/mybargraph.png and b/stata-graphing/mybargraph.png differ
diff --git a/stata-graphing/mybargraph2.png b/stata-graphing/mybargraph2.png
index d97f293..5fec308 100644
Binary files a/stata-graphing/mybargraph2.png and b/stata-graphing/mybargraph2.png differ
diff --git a/stata-graphing/mybargraph3.png b/stata-graphing/mybargraph3.png
index a4d2ddb..a578b55 100644
Binary files a/stata-graphing/mybargraph3.png and b/stata-graphing/mybargraph3.png differ
diff --git a/stata-graphing/myhistogram.png b/stata-graphing/myhistogram.png
index e14f9d7..0744222 100644
Binary files a/stata-graphing/myhistogram.png and b/stata-graphing/myhistogram.png differ
diff --git a/stata-graphing/myscatter.png b/stata-graphing/myscatter.png
index 895b678..0e11f40 100644
Binary files a/stata-graphing/myscatter.png and b/stata-graphing/myscatter.png differ
diff --git a/stata-graphing/s1colorscatter.png b/stata-graphing/s1colorscatter.png
index d04a963..33a788f 100644
Binary files a/stata-graphing/s1colorscatter.png and b/stata-graphing/s1colorscatter.png differ
diff --git a/stata-graphing/s1rcolorAscatter.png b/stata-graphing/s1rcolorAscatter.png
index 1ebcfd8..8d3f352 100644
Binary files a/stata-graphing/s1rcolorAscatter.png and b/stata-graphing/s1rcolorAscatter.png differ
diff --git a/stata-graphing/s1rcolorscatter.png b/stata-graphing/s1rcolorscatter.png
index 5c53ce4..e6e0544 100644
Binary files a/stata-graphing/s1rcolorscatter.png and b/stata-graphing/s1rcolorscatter.png differ
diff --git a/stata-graphing/sjscatter.png b/stata-graphing/sjscatter.png
index 6d7e182..2421776 100644
Binary files a/stata-graphing/sjscatter.png and b/stata-graphing/sjscatter.png differ