删除部署在ShinyApps上的Shiny应用程序的顶部标题

时间:2015-09-11 18:15:00

标签: css r shiny

我已经在ShinyApps上部署了一个应用程序,但我的应用程序在部署时有一个额外的标题。

标题如下所示:

enter image description here

但是,我想在部署应用程序时删除此标头。是否有可能做到这一点?我正在使用教程中的示例闪亮Web应用程序。

server.R:

library(shiny)

# Rely on the 'WorldPhones' dataset in the datasets
# package (which generally comes preloaded).
library(datasets)

# Define a server for the Shiny app
shinyServer(function(input, output) {

  # Fill in the spot we created for a plot
  output$phonePlot <- renderPlot({

    # Render a barplot
    barplot(WorldPhones[,input$region]*1000, 
            main=input$region,
            ylab="Number of Telephones",
            xlab="Year")
  })
})

ui.R:

library(shiny)

# Rely on the 'WorldPhones' dataset in the datasets
# package (which generally comes preloaded).
library(datasets)

# Define the overall UI
shinyUI(

  # Use a fluid Bootstrap layout
  fluidPage(    

    # Give the page a title
    titlePanel("Telephones by region"),

    # Generate a row with a sidebar
    sidebarLayout(      

      # Define the sidebar with one input
      sidebarPanel(
        selectInput("region", "Region:", 
                    choices=colnames(WorldPhones)),
        hr(),
        helpText("Data from AT&T (1961) The World's Telephones.")
      ),

      # Create a spot for the barplot
      mainPanel(
        plotOutput("phonePlot")  
      )

    )
  )
)

2 个答案:

答案 0 :(得分:2)

你不应该这样做。如果您使用shinyapps.io的付费版本,那么您将无法使用此栏,但如果您使用免费版本,则会将其添加为广告,因为他们确实需要以某种方式赚钱。

(有可能删除它,但我真的很喜欢RStudio和他们所有的工作,所以我不想宣传让他们失去生意的方法,对不起......)

如果你看一下不同的计划和定价选项,它会清楚地说免费版包含他们的徽标品牌

答案 1 :(得分:1)

如果你想删除它,那么你必须付钱,它在服务器端添加。您的另一个选择是使用Digital Ocean https://www.digitalocean.com/community/tutorials/how-to-set-up-shiny-server-on-ubuntu-14-04

设置闪亮的服务器