This is an R HTML document. When you click the Knit HTML button a web page will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:

library(readxl)
ODs <- read_excel("R/ODs.xlsx")
View(ODs)
print(ODs)
## # A tibble: 2,599 × 8
##    `Count of Tranx` `Date Received`     `Requesting Unit` Recipient     Location
##               <dbl> <dttm>              <chr>             <chr>         <chr>   
##  1                1 2023-01-23 00:00:00 SSRD              DBM           Manila  
##  2                2 2023-01-23 00:00:00 AAMD              Manila Water… Inc.    
##  3                3 2023-01-23 00:00:00 AAMD              Manila Water… Inc.    
##  4                4 2023-01-23 00:00:00 HRMD              DOF           Manila  
##  5                5 2023-01-23 00:00:00 HRMD              DOF           Manila  
##  6                6 2023-01-23 00:00:00 HRMD              CSC           QC      
##  7                7 2023-01-23 00:00:00 MAAD              DBP           Makati  
##  8                8 2023-01-23 00:00:00 MAAD              NHMFC         Makati  
##  9                9 2023-01-23 00:00:00 MAAD              PMO           Makati  
## 10               10 2023-01-23 00:00:00 MAAD              COA           Phil. P…
## # ℹ 2,589 more rows
## # ℹ 3 more variables: `Document Type` <chr>, `Liaison Officer` <chr>,
## #   `Rating on Timeliness` <chr>