在笔记本电脑上运行Shiny应用程序时出现此错误。在我使用library(git2r)添加一行代码之前,应用程序正常运行。在我的代码下面。
有人可以协助吗?谢谢。
用户界面
league_desc <- c("Premier League","Serie A","Bundesliga","La Liga")
shinyUI(
fluidPage(
headerPanel(h1('Football Statistics', align = "center"),
h2('Data on the 4 main european football leagues. Period 2011 - 2015', align = "center")),
sidebarPanel(
h4('Selection Parameters', align = "center"),
Run Code Online (Sandbox Code Playgroud)
这是我的ui.R文件的初始部分。请注意,即使我没有应用特定的格式设置选项(我也没有“ www”文件夹或“ bootstrap.css”文件),我仍在使用fluidPage命令。
library(devtools)
library(git2r)
library(shiny)
library(rCharts)
library(dplyr)
library(rjson)
library(rNVD3)
league_desc <- c("Premier League","Serie A","Bundesliga","La Liga")
shinyUI(
fluidPage(
headerPanel(h1('Football Statistics', align = "center"),
h2('Data on the 4 main european football leagues. Period 2011 - 2015', align = "center")),
sidebarPanel(
h4('Selection Parameters', …
Run Code Online (Sandbox Code Playgroud)