From 56a379eda8297b95ad9cff40c75f958ec3b8c30e Mon Sep 17 00:00:00 2001 From: Matt Dancho Date: Tue, 15 Nov 2022 11:17:37 -0500 Subject: [PATCH] #225 fixed typo --- vignettes/TQ03-scaling-and-modeling-with-tidyquant.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/TQ03-scaling-and-modeling-with-tidyquant.Rmd b/vignettes/TQ03-scaling-and-modeling-with-tidyquant.Rmd index 846d75f8..e593072d 100644 --- a/vignettes/TQ03-scaling-and-modeling-with-tidyquant.Rmd +++ b/vignettes/TQ03-scaling-and-modeling-with-tidyquant.Rmd @@ -122,7 +122,7 @@ data("FANG") FANG ``` -Second, use `group_by` to group by stock symbol. Third, apply the mutation. We can do this in one easy workflow. The `periodReturns` function is applied to each group of stock prices, and a new data frame was returned with the annual returns in the correct periodicity. +Second, use `group_by` to group by stock symbol. Third, apply the mutation. We can do this in one easy workflow. The `periodReturn` function is applied to each group of stock prices, and a new data frame was returned with the annual returns in the correct periodicity. ```{r} FANG_returns_yearly <- FANG %>%