# Load packages
# Core
library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr 1.1.4 ✔ readr 2.1.5
## ✔ forcats 1.0.0 ✔ stringr 1.5.1
## ✔ ggplot2 3.5.2 ✔ tibble 3.2.1
## ✔ lubridate 1.9.4 ✔ tidyr 1.3.1
## ✔ purrr 1.0.4
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(tidyquant)
## Registered S3 method overwritten by 'quantmod':
## method from
## as.zoo.data.frame zoo
## ── Attaching core tidyquant packages ─────────────────────── tidyquant 1.0.11 ──
## ✔ PerformanceAnalytics 2.0.8 ✔ TTR 0.24.4
## ✔ quantmod 0.4.27 ✔ xts 0.14.1── Conflicts ────────────────────────────────────────── tidyquant_conflicts() ──
## ✖ zoo::as.Date() masks base::as.Date()
## ✖ zoo::as.Date.numeric() masks base::as.Date.numeric()
## ✖ dplyr::filter() masks stats::filter()
## ✖ xts::first() masks dplyr::first()
## ✖ dplyr::lag() masks stats::lag()
## ✖ xts::last() masks dplyr::last()
## ✖ PerformanceAnalytics::legend() masks graphics::legend()
## ✖ quantmod::summary() masks base::summary()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
Take raw prices of five individual stocks and transform them into monthly returns five stocks: “SPY”, “EFA”, “IJS”, “EEM”, “AGG”
# Choose stocks
symbols <- c("SPY", "EFA", "IJS", "EEM", "AGG")
prices <- tq_get(x= symbols,
get = "stock.prices",
from = "2017-01-01",
to = "2021-01-01")
asset_returns_tbl <- prices %>%
group_by(symbol) %>%
tq_transmute(select = adjusted,
mutate_fun = periodReturn,
period = "daily",
type = "log") %>%
ungroup() %>%
rename(asset = symbol,
returns =daily.returns)
set_names(c("asset", "date", "returns"))
## asset date returns
## "asset" "date" "returns"
asset_returns_tbl
## # A tibble: 5,035 × 3
## asset date returns
## <chr> <date> <dbl>
## 1 SPY 2017-01-03 0
## 2 SPY 2017-01-04 0.00593
## 3 SPY 2017-01-05 -0.000795
## 4 SPY 2017-01-06 0.00357
## 5 SPY 2017-01-09 -0.00331
## 6 SPY 2017-01-10 0
## 7 SPY 2017-01-11 0.00282
## 8 SPY 2017-01-12 -0.00251
## 9 SPY 2017-01-13 0.00229
## 10 SPY 2017-01-17 -0.00353
## # ℹ 5,025 more rows
asset_returns_tbl %>%
ggplot(aes(x = returns)) +
geom_density(aes(color = asset), alpha = 1) +
geom_histogram(aes(fill = asset), show.legend = FALSE, alpha = 0.3, binwidth = 0.01) +
facet_wrap(~asset, ncol = 1)
# labeling
labs(title = "Distribution of Monthly Returns, 2012-2016",
y = "Frequency",
x = "Rate of Returns",
caption = "A typical monthly return is higher for SPY and IJS than for AGG, EEM, and EFA.")
## $y
## [1] "Frequency"
##
## $x
## [1] "Rate of Returns"
##
## $title
## [1] "Distribution of Monthly Returns, 2012-2016"
##
## $caption
## [1] "A typical monthly return is higher for SPY and IJS than for AGG, EEM, and EFA."
##
## attr(,"class")
## [1] "labels"