Q_P_revealJS_July_21

Quarto

Quarto enables you to weave together content and executable code into a finished presentation. To learn more about Quarto presentations see https://quarto.org/docs/presentations/.

Bullets

When you click the Render button a document will be generated that includes:

  • Content authored with markdown
  • Output from executable code

Code

When you click the Render button a presentation will be generated that includes both content and the output of embedded code. You can embed code like this:

library(readxl)
X2024_ODs <- read_excel("C:/Users/admin/Desktop/0_   Excel Files -  Data Source for R & Phyton/2024_ODs.xlsx")
print(X2024_ODs)
# A tibble: 1,249 × 6
   Date                RU    Recipient                  Location Doc_type Rating
   <dttm>              <chr> <chr>                      <chr>    <chr>    <chr> 
 1 2024-01-02 00:00:00 SSRD  BSP                        Manila   Financi… Outst…
 2 2024-01-02 00:00:00 DSPD  SEC                        Makati … Financi… Excel…
 3 2024-01-02 00:00:00 FTD   Deutsche Bank              Taguig … Financi… Excel…
 4 2024-01-02 00:00:00 FTD   Citibank N.A. Manila Bran… Makati … Financi… Excel…
 5 2024-01-02 00:00:00 FTD   DBP                        Makati … Financi… Excel…
 6 2024-01-02 00:00:00 OTOP  PHILGUARANTEE              Makati … OTOP_ r… On ti…
 7 2024-01-03 00:00:00 HRMD  CSC                        Quezon … Admin d… Excel…
 8 2024-01-03 00:00:00 OTOP  DOF                        Manila   OTOP_ r… On ti…
 9 2024-01-03 00:00:00 DSPD  DOF                        Manila   Others_… On ti…
10 2024-01-03 00:00:00 MAAD  DBM                        Manila   Financi… On ti…
# ℹ 1,239 more rows