diff --git a/data-visualization-with-Stata/data-visualization-with-Stata-slidy.html b/data-visualization-with-Stata/data-visualization-with-Stata-slidy.html index 6fb231a..95dffe4 100644 --- a/data-visualization-with-Stata/data-visualization-with-Stata-slidy.html +++ b/data-visualization-with-Stata/data-visualization-with-Stata-slidy.html @@ -14,15 +14,18 @@ div.columns{display: flex; gap: min(4vw, 1.5em);} div.column{flex: auto; overflow-x: auto;} div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;} - ul.task-list{list-style: none;} + /* The extra [class] is a hack that increases specificity enough to + override a similar rule in reveal.js */ + ul.task-list[class]{list-style: none;} ul.task-list li input[type="checkbox"] { + font-size: inherit; width: 0.8em; margin: 0 0.8em 0.2em -1.6em; vertical-align: middle; } /* CSS for syntax highlighting */ pre > code.sourceCode { white-space: pre; position: relative; } - pre > code.sourceCode > span { display: inline-block; line-height: 1.25; } + pre > code.sourceCode > span { line-height: 1.25; } pre > code.sourceCode > span:empty { height: 1.2em; } .sourceCode { overflow: visible; } code.sourceCode > span { color: inherit; text-decoration: inherit; } @@ -104,7 +107,7 @@

Data Visualization With Stata

class="title-slide slide section level1 title">

Data Visualization With Stata

Andy Grogan-Kaylor

-

8 Sep 2023

+

10 May 2024

@@ -138,7 +141,7 @@

What are Variables?

- + @@ -146,19 +149,19 @@

What are Variables?

- + - + - + @@ -228,8 +231,8 @@

Data Source

Alps.”

. use "https://github.com/agrogan1/Stata/raw/main/data-visualization-with-Stata/gutten.dta",
->  clear
+class="sourceCode stata">. use "https://github.com/agrogan1/Stata/raw/main/data-visualization-with-Stata/gutten.dta" +> , clear
@@ -298,8 +301,8 @@

Continuous by Continuous (twoway scatter y x)

class="sourceCode stata">. twoway scatter height age_base, title("Tree Height by Age")
. graph export myscatter.png, width(1000) replace
-file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myscatter.png saved
-    as PNG format
+file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myscatter.png + saved as PNG format
Scatterplot Of Tree Height By Age @@ -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 @@

Continuous by Continuous Graph Scheme

. twoway scatter height age_base, title("Tree Height by Age") scheme(burd) msymbol(o) graphr
-> egion(lcolor(none))
+class="sourceCode stata">. twoway scatter height age_base, title("Tree Height by Age") scheme(burd) msymbol(o) graph +> region(lcolor(none))
. graph export myscatterB.png, width(1000) replace
 file /Users/agrogan/Desktop/GitHub/Stata/data-visualization-with-Stata/myscatterB.png
@@ -420,11 +423,12 @@ 

Continuous by Categorical option to give different colors to the different bars.

. graph bar height, over(location) asyvars title("Tree Height by Location") scheme(michigan)
+class="sourceCode stata">. graph bar height, over(location) asyvars title("Tree Height by Location") scheme(michigan +> )

. graph export 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
Bar Graph Of Mean Tree Height By Location With Michigan Graph Scheme @@ -435,8 +439,8 @@

Continuous by Categorical class="sourceCode stata">. graph bar height, over(location) asyvars title("Tree Height by Location") scheme(lean2)

. graph export 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
Bar Graph Of Mean Tree Height By Location With lean2 Graph Scheme @@ -447,8 +451,8 @@

Continuous by Categorical class="sourceCode stata">. graph bar height, over(location) asyvars title("Tree Height by Location") scheme(s1color)

. graph export 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
Bar Graph Of Mean Tree Height By Location With s1color Graph Scheme @@ -456,12 +460,12 @@

Continuous by Categorical s1color Graph Scheme

. graph bar height, over(location) asyvars title("Tree Height by Location") scheme(burd) gra
-> phregion(lcolor(none))
+class="sourceCode stata">. 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 /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
Bar Graph Of Mean Tree Height By Location With burd Graph Scheme 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 - + + - +

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?

Column 1 Column 2
Row 1
Row 2
Row 3
- - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + +
Column 1Column 2Column 3Column 1Column 2Column 3
Row 1Row 1
Row 2Row 2
Row 3Row 3

Variable Types

-

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:

+

Data Source

-

Norway Spruce and Larch Forest in Austrian Alps{ width=40% }

-

Image Source: https://ec.europa.eu/jrc/en/research-topic/forestry/qr-tree-project/norway-spruce

-

The data used in this example are derived from the R package Functions and Datasets for "Forest Analytics with R".

-

According to the documentation, the source of these data are: "von Guttenberg’s Norway spruce (Picea abies [L.] Karst) tree measurement data."

-

Old Tjikko, a 9,550 Year Old Norway Spruce in Sweden{ width=20% }

+
+ + +
+

Image Source: https://ec.europa.eu/jrc/en/research-topic/forestry/qr-tree-project/norway-spruce

+

The data used in this example are derived from the R package +Functions and Datasets for “Forest Analytics with R”.

+

According to the documentation, the source of these data are: “von +Guttenberg’s Norway spruce (Picea abies [L.] Karst) tree measurement +data.”

+
+ + +

The documentation goes on to further note that:

-

"The data are measures from 107 trees. The trees were selected as being of average size from healthy and well stocked stands in the Alps."

+

“The data are measures from 107 trees. The trees were selected as +being of average size from healthy and well stocked stands in the +Alps.”

-
. use "https://github.com/agrogan1/Stata/raw/main/data-visualization-with-Stata/gutten.dta", clear
+
. use "https://github.com/agrogan1/Stata/raw/main/data-visualization-with-Stata/gutten.dta"
+> , clear
 

Variables

-

site Growth quality class of the tree’s habitat. 5 levels.

-

location Distinguishes tree location. 7 levels.

+

site Growth quality class of the tree’s +habitat. 5 levels.

+

location Distinguishes tree location. 7 +levels.

tree An identifier for the tree within location.

age_base The tree age taken at ground level.

-

For some purposes, it might be best to use a centered age variable, centered at the grand mean of tree age:

+

For some purposes, it might be best to use a centered age variable, +centered at the grand mean of tree age:

. egen ageMEAN = mean(age_base)
 
@@ -144,99 +347,200 @@

Variables

age_bh Tree age taken at 1.3 m.

tree.ID A factor uniquely identifying the tree.

Graphs

-

One Continuous Thing At A Time (histogram x)

+

One Continuous Thing +At A Time (histogram x)

. histogram height, title("Tree Height")
 (bin=30, start=1.5, width=1.4)
 
. 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
 
-

Histogram Of Tree Height{width=50%}

-

One Categorical Thing At A Time (graph bar, over(x))

+
+ + +
+

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
 
-

Bar Graph Of Tree Location{width=50%}

-

Continuous by Continuous (twoway scatter y x)

+
+ + +
+

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
 
-

Scatterplot Of Tree Height By Age{width=50%}

-

Categorical by Categorical (graph bar, over(x) over(y))

+
+ + +
+

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
 
-

Bar Graph Of Tree Site By Location{width=50%}

-

Continuous by Categorical (graph bar y, over(x))

+
+ + +
+

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
 
-

Bar Graph Of Mean Tree Height By Location{width=50%}

+
+ + +

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
 
-

Scatterplot Of Tree Height By Age With Michigan Graph Scheme{width=50%}

+
+ + +
. twoway scatter height age_base, title("Tree Height by Age") scheme(lean2) msymbol(o)
 
. 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
 
-

Scatterplot Of Tree Height By Age With lean2 Graph Scheme{width=50%}

+
+ + +
. 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
 
-

Scatterplot Of Tree Height By Age With s1color Graph Scheme{width=50%}

-
. twoway scatter height age_base, title("Tree Height by Age") scheme(burd) msymbol(o) graphregion(lc
-> olor(none))
+
+ + +
+
. twoway scatter height age_base, title("Tree Height by Age") scheme(burd) msymbol(o) graph
+> region(lcolor(none))
 
. 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
 
-

Scatterplot Of Tree Height By Age With burd Graph Scheme{width=50%}

-

Continuous by Categorical (graph bar y, over(x) 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
 
-

Bar Graph Of Mean Tree Height By Location With Michigan Graph Scheme{width=50%}

+
+ + +
. 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
 
-

Bar Graph Of Mean Tree Height By Location With lean2 Graph Scheme{width=50%}

+
+ + +
. 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
 
-

Bar Graph Of Mean Tree Height By Location With s1color Graph Scheme{width=50%}

-
. graph bar height, over(location) asyvars title("Tree Height by Location") scheme(burd) graphregion
-> (lcolor(none))
+
+ + +
+
. 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
 
-

Bar Graph Of Mean Tree Height By Location With burd Graph Scheme{width=50%}

+
+ + +
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