联系方式

联系信息

学术平台

社交媒体

联系表单

#| echo: false #| fig-align: center library(shiny) shinyApp( ui = fluidPage( textInput(“name”, “姓名”), textInput(“email”, “邮箱”), textAreaInput(“message”, “留言”, rows = 5), actionButton(“submit”, “提交”) ), server = function(input, output) {} )