R和R闪亮文档

我们如何/在哪里可以找到下一页... UI elements to include within the tab等文档网页上不存在的参数:

https://shiny.rstudio.com/reference/shiny/0.12.1/tabPanel.html

我不知道我想做什么。如果我知道所有选项,则可以决定和设计。我对文档页面中缺少的内容感到沮丧。 我可以为tabPanel设置高度或宽度吗?

当我在这里通过解决方案生成两个并排图像时:

Centering images horizontally in a shiny fluidRow

rm(list = ls())
library(shiny)

server = function(input,output,session) {}

ui <- fluidPage(fluidRow(
  #Change column(x,for desired width
  column(6,div(style="display: inline-block; width: 33%;",img(src="https://cran.r-project.org/Rlogo.svg",height=300,width=300)),width=300))))
)


shinyApp(ui = ui,server = server)

似乎两个图像的高度必须设置为相同。否则,它将如下图所示。图像之间没有对齐。

R和R闪亮文档

所以,问题是我在哪里可以找到有关R和R-Shiny中函数自变量的所有详细信息

wanyfkkk 回答:R和R闪亮文档

暂时没有好的解决方案,如果你有好的解决方案,请发邮件至:iooj@foxmail.com
本文链接:https://www.f2er.com/3063530.html

大家都在问