Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ThinkR-open/tagsinput
Bootstrap tags input for shiny
https://github.com/ThinkR-open/tagsinput
bootstrap r shiny
Last synced: 2 months ago
JSON representation
Bootstrap tags input for shiny
- Host: GitHub
- URL: https://github.com/ThinkR-open/tagsinput
- Owner: ThinkR-open
- License: other
- Archived: true
- Created: 2017-05-06T07:33:40.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-06T08:42:02.000Z (almost 8 years ago)
- Last Synced: 2024-08-13T07:15:39.269Z (6 months ago)
- Topics: bootstrap, r, shiny
- Language: R
- Size: 458 KB
- Stars: 19
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - ThinkR-open/tagsinput - Bootstrap tags input for shiny (R)
README
---
output: github_document
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
``````{r, eval=FALSE}
library(shiny)
ui <- fluidPage(
tagsTextInput("fruits", "Fruits", "apple, banana"),
textOutput("out")
)server <- function(input, output){
output$out <- renderPrint( strsplit( input$fruits, ",")[[1]] )
}shinyApp( ui, server )
```![](gif/fruits.gif)