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
Hi, not sure if the complete_cases argument is supposed to filter all rows that are NA, if so, that seems to not be working.
tq_get("VIX",complete_cases = TRUE) %>% tail
# A tibble: 6 × 8
symbol date open high low close volume adjusted
<chr> <date> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 VIX 2023-10-13 NA NA NA NA NA NA
2 VIX 2023-10-16 NA NA NA NA NA NA
3 VIX 2023-10-17 NA NA NA NA NA NA
4 VIX 2023-10-18 NA NA NA NA NA NA
5 VIX 2023-10-19 NA NA NA NA NA NA
6 VIX 2023-10-20 NA NA NA NA NA NA
The text was updated successfully, but these errors were encountered:
Hi, not sure if the complete_cases argument is supposed to filter all rows that are NA, if so, that seems to not be working.
The text was updated successfully, but these errors were encountered: