我有以下闪亮的应用程序。
服务器。R
library(radarchart)
shinyServer(function(input, output) {
output$radar <- renderChartJSRadar({
scores <- data.frame("Label"=c("Communicator", "Data Wangler", "Programmer",
"Technologist", "Modeller", "Visualizer"),
"Rich" = c(9, 7, 4, 5, 3, 7),
"Andy" = c(7, 6, 6, 2, 6, 9),
"Aimee" = c(6, 5, 8, 4, 7, 6))
chartJSRadar(scores, maxScale = 10, showToolTipLabel=TRUE)
})
})
用户界面。R
shinyUI(fluidPage(
titlePanel("RADARRRRR "),
sidebarLayout(
sidebarPanel(
numericInput("obs", "Observations:", 10), width = 4
),
mainPanel(
chartJSRadarOutput("radar")
)
)
))
此应用程序运行没有错误。 没有 R 控制台消息,没有 chrome 控制台消息和绘图的空白画布。我知道绘图库有效,因为我可以强制它显示在 Rstudio 中。我还检查了图表.js是否在库中,看起来很好。
任何帮助修复或想法,甚至开始调试没有错误消息,非常感谢。
检查页面中的画布。我怀疑它真的很大,你需要向下滚动一点才能看到它。