Description Usage Arguments Details Author(s) Examples
Creates a Shiny Select Input with custom label style to select a country from a columns dataset.
1 | countryInput(id, x)
|
id |
The input id of the select Input that will get passed on to the apps' server. |
x |
A column from a dataframe or tibble that contains country names. |
The purpose of this function is to provide a quick reference for a common Shiny Shiny Select Input function that appears multiple times in the app's ui.
Panagiotis Stylianos
1 2 3 4 | ## Not run:
countryInput(id = "country_cases", x = coronavirus$country)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.