From 3cf96b65e6b883c02a1a3bc655270f51bf5eb2ff Mon Sep 17 00:00:00 2001 From: EBrown-nycc Date: Fri, 1 Nov 2024 11:33:29 -0400 Subject: [PATCH] Update get_num_monthly_delays.r --- code/get_num_monthly_delays.r | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/code/get_num_monthly_delays.r b/code/get_num_monthly_delays.r index ae6fc05..a425e49 100644 --- a/code/get_num_monthly_delays.r +++ b/code/get_num_monthly_delays.r @@ -3,12 +3,10 @@ library(highcharter) library(tidyr) library(htmlwidgets) library(lubridate) -library(reticulate) +library(arrow) library(pandoc) - -pd <- import("pandas") -x <- pd$read_feather("../data/output/filtered_weekends_vacation_covid_delays.feather") +x <- read_feather("../data/output/filtered_weekends_vacation_covid_delays.feather") # read in enrollment nums @@ -144,4 +142,4 @@ h <- h %>% ) ) -saveWidget(h, '../visuals/num_monthly_delays.html', selfcontained=TRUE) \ No newline at end of file +saveWidget(h, '../visuals/num_monthly_delays.html', selfcontained=TRUE)