Code for Quiz 9
library(tidyverse)
library(echarts4r)
library(ggforce) # install before using for the first time
library(tidyquant) # install before using for the first time
library(hrbrthemes)
theme_set(theme_ipsum())
Create a bar chart that shows the average hours Americans spend on five activities by year. Use the timeline argument to create an animation that will animate through the years.
spend_time
contains 10 years of data on how many hours Americans spend each day on 5 activitiesspend_time <- read_csv("https://estanny.com/static/week8/spend_time.csv")
e_charts-1
Start with spend_time
spend_time %>%
group_by(year) %>%
e_charts(x =activity , timeline = TRUE) %>%
e_timeline_opts(autoPlay = TRUE) %>%
e_bar(serie = avg_hours) %>%
e_title(text ='Average hours Americans spend per day on each activity') %>%
e_legend(show = FALSE )
Create a line chart for the activities that American spend time on.
Start with spend_time
THEN use mutate to convert year from an number to a string (year-month-day) using mutate
first convert year to a string “201X-12-31” using the function paste
use mutate to convert year from a character object to a date object using the ymd function from the lubridate package (part of the tidyverse, but not automatically loaded). ymd converts dates stored as characters to date objects.
THEN group_by the variable activity (to get a line for each activity)
THEN initiate an e_charts object with year on the x-axis
THEN use e_line to add a line to the variable avg_hours
THEN add a tooltip with e_tooltip
THEN use e_title to set the main title to “Average hours Americans spend per day on each activity”
THEN use e_legend(top = 40) to move the legend down (from the top)
spend_time %>%
mutate(year = paste(year, "12","31", sep = "-")) %>%
mutate (year = lubridate::ymd(year)) %>%
group_by(activity) %>%
e_charts(x = year) %>%
e_line(serie = avg_hours) %>%
e_tooltip() %>%
e_title(text = 'Average hours Americans spend per day on each activity') %>%
e_legend(top = 40)
spend_time
data
ggplot(spend_time, aes(x = year, y = avg_hours, color = activity)) +
geom_point() +
geom_mark_ellipse(aes(filter = activity == "leisure/sports", description = "Americans spend on average more time each day on leisure/sports than the other activities"))
Modify the tidyquant example in the video
Retrieve stock price for Google, ticker: GOOG, using tq_get
df <- tq_get("GOOG", get = "stock.prices", from = "2019-08-01", to = "2020-07-28")
df %>% slice_min(close)
# A tibble: 1 x 8
symbol date open high low close volume adjusted
<chr> <date> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 GOOG 2020-03-23 1061. 1071. 1014. 1057. 4044100 1057.
Create a plot with the df data
ggplot(df, aes(x = date, y = close)) +
geom_line() +
geom_mark_ellipse(aes(
filter = date == "2020-01-21",
description = "1st US case reported"), fill = "yellow") +
geom_mark_ellipse(aes(
filter = date == "2020-03-23",
description = "Justice department creates task force"), color = "red") +
labs(
title = "Google",
x = NULL,
y = "Closing price per share",
caption = "Source: https://en.wikipedia.org/wiki/Timeline_of_the_COVID-19_pandemic_in_the_United_States"
)