Nothing
#' The application User-Interface
#'
#' @param request Internal parameter for `{shiny}`.
#' @noRd
app_ui <- function(request) {
tagList(
golem_add_external_resources(),
fluidPage(
title = "Main existing datasets",
h1(toupper("Main existing datasets")),
h4(
paste(
"Shiny for Open Science to visualize, share, and",
"inventory the main existing human datasets for",
"researchers."
)
),
tags$p(
"Maintainer : ",
tags$a(
href = "https://github.com/ecamenen",
"Etienne camenen"
)
),
br(),
tmapOutput("map", width = 550, height = 400),
tags$p(
br(),
strong("Tips:"),
br(),
"- To add new data please contact",
tags$a(
href = "mailto:baptiste.couvy@icm-institute.org",
"Baptiste Couvy-Duchesne"
),
"or make a PR on our",
tags$a(
href = "https://github.com/baptisteCD/MainExistingDatasets",
"Github."
),
br(),
"- Use the search field for a better navigation through the data."
),
br(),
selectizeInput(
inputId = "na_col",
label = "Remove missing values in selected column(s)",
choices = NULL
),
DT::dataTableOutput("table_datasets")
)
)
}
#' Add external Resources to the Application
#'
#' This function is internally used to add external
#' resources inside the Shiny application.
#'
#' @noRd
golem_add_external_resources <- function() {
add_resource_path(
"www", app_sys("app/www")
)
tags$head(
favicon(),
bundle_resources(
path = app_sys("app/www"),
app_title = "MainExistingDatasets"
)
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.