I've browsed and browsed but cant seem to find a solution on here that fits my case. I have an Excel file with 4 tabs. Each tab is formatted exactly the same- 2 columns and 12 rows (including headers). The columns headers are all titled as "Slow Times" and "Fast Times", respectively, then contain some numbers. I've been able to load the excel file and see that the tabs are also imported, but I'm unsure how to reference each tab once they're loaded. So far I have:
sheets <- excel_sheets("mydata.xlsx")
list_all <- lapply(sheets, function(x) read_excel("mydata.xlsx", sheet = x))
list_all