Get started with Part I.
Another approach
There’s also a more verbose way to achieve our aim, and I’m showing it here because I think it’s useful to see how different functions and libraries connect and cross-over in the tidyverse (right now I’m fascinated by the intersection of the purrr::map
functions and the dplyr::summarise_if, _at, _all
functions…but that’s a story for another time).
The verbose approach is as follows:
- use
tidyr::pivot_wide
to reshape the data to row per date, with a column for each stock - use
tidyr::pivot_long
to reshape it back to its longer format.
Let’s do it step by step…
First, we make it wide:
widedata <- testdata %>%
pivot_wider(id_cols = date, names_from = ticker, values_from = returns)
widedata
## # A tibble: 3 x 4
## date AMZN FB TSLA
## <dbl> <dbl> <dbl> <dbl>
## 1 1 0.01 0.02 NA
## 2 2 0.03 0.04 0.05
## 3 3 0.06 NA 0.07
Where we had missing rows, we now have NA
.
Now we make it long again:
tidydata <- widedata %>%
pivot_longer(-date, names_to = 'ticker', values_to = 'returns')
tidydata
## # A tibble: 9 x 3
## date ticker returns
## <dbl> <chr> <dbl>
## 1 1 AMZN 0.01
## 2 1 FB 0.02
## 3 1 TSLA NA
## 4 2 AMZN 0.03
## 5 2 FB 0.04
## 6 2 TSLA 0.05
## 7 3 AMZN 0.06
## 8 3 FB NA
## 9 3 TSLA 0.07
And again we have a row for every date for every stock.
tidydata %>%
group_by(ticker) %>%
summarise(count = n())
## # A tibble: 3 x 2
## ticker count
## <chr> <int>
## 1 AMZN 3
## 2 FB 3
## 3 TSLA 3
Here’s the complete pipeline:
testdata %>%
pivot_wider(id_cols = date, names_from = ticker, values_from = returns) %>%
pivot_longer(-date, names_to = 'ticker', values_to = 'returns')
## # A tibble: 9 x 3
## date ticker returns
## <dbl> <chr> <dbl>
## 1 1 AMZN 0.01
## 2 1 FB 0.02
## 3 1 TSLA NA
## 4 2 AMZN 0.03
## 5 2 FB 0.04
## 6 2 TSLA 0.05
## 7 3 AMZN 0.06
## 8 3 FB NA
## 9 3 TSLA 0.07
Stay tuned for the next installment in which the author will explore what happens if we have more than one variable in our original data.
Visit Robot Wealth website for additional insight: https://robotwealth.com/how-to-fill-gaps-in-large-stock-data-universes-using-tidyr-and-dplyr/
Past performance is not indicative of future results.
Any stock, options or futures symbols displayed are for illustrative purposes only and are not intended to portray recommendations.
Disclosure: Interactive Brokers
Information posted on IBKR Campus that is provided by third-parties does NOT constitute a recommendation that you should contract for the services of that third party. Third-party participants who contribute to IBKR Campus are independent of Interactive Brokers and Interactive Brokers does not make any representations or warranties concerning the services offered, their past or future performance, or the accuracy of the information provided by the third party. Past performance is no guarantee of future results.
This material is from Robot Wealth and is being posted with its permission. The views expressed in this material are solely those of the author and/or Robot Wealth and Interactive Brokers is not endorsing or recommending any investment or trading discussed in the material. This material is not and should not be construed as an offer to buy or sell any security. It should not be construed as research or investment advice or a recommendation to buy, sell or hold any security or commodity. This material does not and is not intended to take into account the particular financial conditions, investment objectives or requirements of individual customers. Before acting on this material, you should consider whether it is suitable for your particular circumstances and, as necessary, seek professional advice.