ggplot2
basicsDuring ANLY 512 we will be studying the theory and practice of
data visualization. We will be using R and the
packages within R to assemble data and construct many
different types of visualizations. We begin by studying some of the
theoretical aspects of visualization. To do that we must appreciate the
basic steps in the process of making a visualization.
The objective of this assignment is to complete and explain basic plots before moving on to more complicated ways to graph data.
A couple of tips, remember that there may be pre-processing involved in your graphics so you may have to do summaries or calculations to prepare, those should be included in your work.
To ensure accuracy pay close attention to axes and labels, you will be evaluated based on the accuracy and expository nature of your graphics. Make sure your axis labels are easy to understand and are comprised of full words with units if necessary.
Each question is worth 5 points.
To submit this homework you will create the document in Rstudio, using the knitr package (button included in Rstudio) and then submit the document to your Rpubs account. Once uploaded you will submit the link to that document on Canvas. Please make sure that this link is hyper linked and that I can see the visualization and the code required to create it.
nasaweather package, create a
scatter plot between wind and pressure, with color being used to
distinguish the type of storm.library (nasaweather)
head(storms)
## # A tibble: 6 × 11
## name year month day hour lat long pressure wind type seasday
## <chr> <int> <int> <int> <int> <dbl> <dbl> <int> <int> <chr> <int>
## 1 Allison 1995 6 3 0 17.4 -84.3 1005 30 Tropical D… 3
## 2 Allison 1995 6 3 6 18.3 -84.9 1004 30 Tropical D… 3
## 3 Allison 1995 6 3 12 19.3 -85.7 1003 35 Tropical S… 3
## 4 Allison 1995 6 3 18 20.6 -85.8 1001 40 Tropical S… 3
## 5 Allison 1995 6 4 0 22 -86 997 50 Tropical S… 4
## 6 Allison 1995 6 4 6 23.3 -86.3 995 60 Tropical S… 4
data= storms %>% select(wind, pressure, type)%>%
group_by(type)
p <-data %>%
ggplot(aes( x= pressure, y= wind))
p + geom_point(aes(color = type))
MLB_teams data in the mdsr package
to create an informative data graphic that illustrates the relationship
between winning percentage and payroll in context.data("MLB_teams", package= 'mdsr')
MLB_teamsGr=
MLB_teams %>%
mutate(MLB_teamsPop= cut(metroPop,
breaks= c(0,2500000,5000000,10000000,25000000),
labels= c("low", "medium", "high", "very high")))
MLB_teamsGr %>%
ggplot(aes(x= payroll ,y= WPct)) +
geom_point(aes(color= MLB_teamsPop))+
geom_smooth(method= "lm", se=FALSE, aes(color= MLB_teamsPop))+
labs(x="Payroll per team", y="Winning Percentage")
RailTrail data set from the mosaicData
package describes the usage of a rail trail in Western Massachusetts.
Use these data to answer the following questions.volume against the high temperature that dayweekday (an indicator
of weekend/holiday vs. weekday)library(mosaicData)
ggplot(RailTrail, aes(x = hightemp, y = volume)) +
geom_point() +
geom_smooth(method = "lm", se = FALSE) +
facet_wrap(~ weekday, nrow = 2) +
labs(x = "high temperature (deg. F)",
y = "trail volume")
RailTrail %>%
mutate(weekday_nice = ifelse(weekday, "weekday", "weekend")) %>%
ggplot(aes(x = hightemp, y = volume)) +
geom_point() +
geom_smooth(method = "lm", se = FALSE) +
facet_wrap(~ weekday_nice, nrow = 1) +
labs(x = "high temperature (deg. F)",
y = "trail volume")
nasaweather package, use the
geom_path function to plot the path of each tropical storm
in the storms data table. Use color to distinguish the
storms from one another, and use faceting to plot each year in its own
panel.storms %>%
ggplot(aes(x=lat, y=long))+ geom_path(aes(color = name))+ facet_wrap(~year)
penguins data set from the
palmerpenguins package.library(palmerpenguins)
ggplot(penguins, aes(bill_depth_mm, bill_length_mm, color = species)) +
geom_point() +
geom_smooth(method = "lm", aes(color= species)) +
labs(title = ("Penguin Bill Size by Species"),
x = "Bill Depth (mm)",
y = "Bill Length (mm)",
color = "Species")
ggplot(penguins, aes(bill_depth_mm, bill_length_mm, color = species)) +
geom_point() +
facet_wrap(~species) +
geom_smooth(method = "lm", aes(color= species)) +
labs(title = ("Penguin Bill Size by Species"),
x = "Bill Depth (mm)",
y = "Bill Length (mm)",
color = "Species")