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
library(gt)
# Define the start and end dates for the data rangestart_date<-"2010-06-07"end_date<-"2010-06-14"# Create a gt table based on preprocessed# `sp500` table datasp500|>dplyr::filter(date>=start_date&date<=end_date) |>dplyr::select(-adj_close) |>
gt() |>
tab_header(
title="S&P 500",
subtitle=glue::glue("{start_date} to {end_date}")
) |>
fmt_currency() |>
fmt_date(columns=date, date_style="wd_m_day_year") |>
fmt_number(columns=volume, suffixing=TRUE)
The text was updated successfully, but these errors were encountered:
Might be related to #75
The text was updated successfully, but these errors were encountered: