gpt4 book ai didi

shiny - 在 Shiny 的两个列表框之间移动项目

转载 作者:行者123 更新时间:2023-12-05 02:11:31 24 4
gpt4 key购买 nike

有没有一种简单的方法可以在 shiny 中创建这样的东西?

enter image description here

最佳答案

RStudio 目前正在处理 sortable 包:RStudio/sortable

请注意,它目前正在开发中(标记为实验性),因此可能会发生重大变化,并且只能通过 GitHub 访问

# install.packages("remotes")
# remotes::install_github("rstudio/sortable")

library(shiny)
library(sortable)

ui <- fluidPage(
fluidRow(
column(
width = 12,
bucket_list(
header = "Drag the items in any desired bucket",
group_name = "bucket_list_group",
add_rank_list(
text = "Drag from here",
labels = c("Ant", "Cat", "Eagle", "Giraffe", "Bear", "Frog","Dog"),
input_id = "rank_list_1"
),
add_rank_list(
text = "to here",
labels = NULL,
input_id = "rank_list_2"
)
)
)
)
)

shinyApp(ui, function(input,output) {})

这导致: Example image for sortable bucketlist

关于shiny - 在 Shiny 的两个列表框之间移动项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57503861/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com