我写了几个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
答案 0 :(得分:1)
首先运行以下脚本,然后运行闪亮的应用程序,它将运行。
update.packages(询问=否,checkBuilt = TRUE)