Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/r/72.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在R+中组合2个标记;闪亮的_R_Shiny - Fatal编程技术网

如何在R+中组合2个标记;闪亮的

如何在R+中组合2个标记;闪亮的,r,shiny,R,Shiny,我的闪亮应用程序在用户端有两个样式修改ui.r。如何将这些通话合并为一个通话 shinyUI(fluidPage( ## Make Lines Black tags$head(tags$style(HTML("hr {border-top: 1px solid #000000;}")) ), ## Hide the ``logout'' popup tags$head(tags$style(HTML('.shiny-server-account { display: none; }'))),

我的闪亮应用程序在用户端有两个样式修改
ui.r
。如何将这些通话合并为一个通话

shinyUI(fluidPage(

## Make Lines Black
tags$head(tags$style(HTML("hr {border-top: 1px solid #000000;}")) ),

## Hide the ``logout'' popup
tags$head(tags$style(HTML('.shiny-server-account { display: none; }'))),

### MORE CODE...

你可以把它们放在同一条线上。例如:

css <- "
hr {border-top: 1px solid #000000;}
.shiny-server-account { display: none; }
"
...
tags$head(tags$style(HTML(css)))
css