gpt4 book ai didi

r - Shiny 的显示数字而不是日期

转载 作者:行者123 更新时间:2023-12-04 10:49:15 24 4
gpt4 key购买 nike

我正在尝试用 Shiny 显示一个表格,但是我在以正确的格式显示日期时遇到了问题。这是我正在处理的一个例子:

library(shiny)

# Define UI for application that draws a histogram
ui <- fluidPage(
sidebarLayout(

sidebarPanel(
textInput("myfirstinput", "text1"),
textInput("mysecondinput", "text2"),
actionButton("button", "An action button")
),
mainPanel(
tableOutput("table1")
)
)
)


# Define server logic required to draw a histogram
server <- function(input, output) {
selected <- as.Date('2000-01-01', "%Y-%m-%d")
selected <- as.list(selected)

output$table1 <- renderTable(selected)

}

# Run the application
shinyApp(ui = ui, server = server)

最佳答案

这也有效:)

 selected <- as.character(as.Date('2000-01-01', "%Y-%m-%d"))

享受并继续发布!

关于r - Shiny 的显示数字而不是日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59565784/

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