Skip to content

Commit

Permalink
It sounds so British...
Browse files Browse the repository at this point in the history
...now that we are using pounds.
  • Loading branch information
JoeSwinehart committed Feb 17, 2021
1 parent 23dc39c commit 2122195
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Lab3.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ ggplot(purifiedhoney, aes(year, prodsimpler)) +
#Adding in appropriate indications and annotations
labs(title = "US Honey Production",
subtitle = "1998-2012",
y = "Thousands of gallons",
y = "Thousands of pounds",
x = "Year",
caption = "The average honey bee's wings flap over 183 times per second.")+
annotate(geom = "point", x = 1998, y = 37350, colour = "#FF634D", size = 3) +
Expand Down Expand Up @@ -102,7 +102,7 @@ ggplot(purifiedhoney, aes(year, prodsimpler)) +
scale_y_log10()+
labs(title = "US Honey Production",
subtitle = "1998-2012",
y = "Thousands of gallons",
y = "Thousands of pounds",
x = "Year",
caption = "A queen bee can sting multiple times without dying.")+
annotate(geom = "point", x = 1998, y = 37350, colour = "#FFE26A", size = 3) +
Expand Down Expand Up @@ -135,7 +135,7 @@ ggplot(purifiedhoney, aes(year, prodsimpler)) +
scale_y_log10()+
labs(title = "US Honey Production",
subtitle = "1998-2012",
y = "Thousands of gallons",
y = "Thousands of pounds",
x = "Year",
caption = "A typical Bee colony consists of 30,000 to 60,000 bees.")+
annotate(geom = "point", x = 1998, y = 37350, colour = "#D5A238", size = 3) +
Expand Down Expand Up @@ -169,7 +169,7 @@ ggplot(purifiedhoney, aes(year, prodsimpler)) +
scale_y_log10()+
labs(title = "US Honey Production",
subtitle = "1998-2012",
y = "Thousands of gallons",
y = "Thousands of pounds",
x = "Year",
caption = "An adult worker bee's lifespan is about 45 days.")+
annotate(geom = "point", x = 1998, y = 37350, colour = "#FFD0BC", size = 3) +
Expand Down Expand Up @@ -202,7 +202,7 @@ ggplot(purifiedhoney, aes(year, prodsimpler)) +
scale_y_log10()+
labs(title = "US Honey Production",
subtitle = "1998-2012",
y = "Thousands of gallons",
y = "Thousands of pounds",
x = "Year",
caption = "99% of a bee colony is made up of female bees.")+
theme_minimal()+
Expand Down Expand Up @@ -237,7 +237,7 @@ ggplot(purifiedhoney, aes(year, prodsimpler)) +
scale_y_log10()+
labs(title = "US Honey Production",
subtitle = "1998-2012",
y = "Thousands of gallons",
y = "Thousands of pounds",
x = "Year",
caption = "Bees have an excellent sense of smell.")+
theme_minimal()+
Expand Down Expand Up @@ -272,7 +272,7 @@ ggplot(regional_honey_production, aes(reorder(state, -totalprod), totalprod, fil
scale_y_continuous(labels = comma) +
labs(title = "Average Honey Production",
subtitle = "Per state with color indicating region",
y = "Total production per gallon (thousands)",
y = "Average production per state (in pounds)",
x = "State")
```
Expand Down

0 comments on commit 2122195

Please sign in to comment.