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, "'});"),
              "}")
           ) 
         )