会议在Shiny中止

时间:2015-03-12 00:36:27

标签: r shiny shiny-server

我写了几个ui.r和server.r代码,当我运行时,包显示一条中止的消息:

  

R会话中止,R遇到致命错误,会话终止。

代码是

library(shiny)
shinyUI(fluidPage (

titlePanel(title="wow my first App"),
sidebarLayout(
sidebarPanel("this is the sidebar panel"),
mainPanel("This is the main Panel text, output displayed here")
)

)

)

library(shiny)
shinyServer(
function(input,output)
{

}

)
你可以帮帮我吗?我在Window Vista使用R 3.1.3

1 个答案:

答案 0 :(得分:1)

首先运行以下脚本,然后运行闪亮的应用程序,它将运行。

update.packages(询问=否,checkBuilt = TRUE)