Appendix C: Summary Table

C.1 Display Most Variables of the Summary Table

Go back to Appendix B

R Code C.1 : Display All Variables of the Summary Table with the exception of the simple & technical explanations and the methods used for computations

Code
summary_table |> 
    dplyr::select(1:12, 17) |>  
    DT::datatable(
         options = list(
           initComplete = htmlwidgets::JS(
              "function(settings, json) {",
              paste0("$(this.api().table().container()).css({'font-size': '", font.size, "'});"),
              "}")
           ) 
         )

C.2 Explaining All Variables

Go back to Appendix B

R Code C.2 : Explain All 184 Variables Found in the Summary Table

Code
summary_table |>
    dplyr::filter(Country == "USA") |> 
    dplyr::select(3, 13, 14, 15) |> 
    DT::datatable(
         options = list(
           initComplete = htmlwidgets::JS(
              "function(settings, json) {",
              paste0("$(this.api().table().container()).css({'font-size': '", font.size, "'});"),
              "}")
           ) 
         )

C.3 Explain Austria’s 21 Variables

Go back to Appendix B

R Code C.3 : Explain All 21 Variables Registered with Austria in the Summary Table

Code
summary_table |>
    dplyr::filter(Country == "Austria") |> 
    dplyr::select(1, 3, 13, 14, 15) |> 
    DT::datatable(
         options = list(
           initComplete = htmlwidgets::JS(
              "function(settings, json) {",
              paste0("$(this.api().table().container()).css({'font-size': '", font.size, "'});"),
              "}"),
           pageLength = 25,
           lengthMenu = c(5, 10, 15, 20, 25)
           ) 
         )