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
jhu_csse_daily_subset %>%
group_by(geo_value) %>%
epi_slide(cases_14dav= mean(cases), before=6, after=7) %>%
# Remove a nonessential var. to ensure new col is printeddplyr::select(geo_value, time_value, cases, cases_14dav) %>%
ungroup()
That comment's a bit obtrusive and annoying. (If it's unclear: this error is explaining why dplyr::select() call exists: to prevent the new columns we just created from being relegated to 1 more variable etc. and not having their actual values displayed by print.epi_df()/print.tibble() in some configurations (it doesn't happen in my R session but it may happen for pkgdown or other people's systems).)
We can probably remove that comment, plus restructure things to help people understand what columns exist in the data set, by using something like