You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: Problem with mutate() input nested.col.
x Series contains non-leading NAs
i Input nested.col is purrr::map(...).
i The error occurred in group 1: symbol = "BTC-USD".
Run rlang::last_error() to see where the error occurred.
But not when running identical code with stock tickers instead:
I get an error when running:
rbind(tq_get("BTC-USD"),
tq_get("ETH-USD")) %>%
group_by(symbol) %>%
tq_mutate(select = close, mutate_fun = RSI)
Error: Problem with
mutate()
inputnested.col
.x Series contains non-leading NAs
i Input
nested.col
ispurrr::map(...)
.i The error occurred in group 1: symbol = "BTC-USD".
Run
rlang::last_error()
to see where the error occurred.But not when running identical code with stock tickers instead:
rbind(tq_get("MSFT"),
tq_get("AAPL")) %>%
group_by(symbol) %>%
tq_mutate(select = close, mutate_fun = RSI)
Very confused by this.
The text was updated successfully, but these errors were encountered: