rChartを光沢のあるアプリケーションにプロットし、Rstudioサーバー経由でこれを実行しようとしています。私がアプリを実行すると、光沢のあるページにエラーが表示されます。以外の機能を適用しようとしましたが、RChartが新しいブラウザウィンドウで開きます。rChartが光沢のあるアプリケーションで新しいウィンドウを開きます
光沢のあるアプリケーションでrChartをどのように表示させることができますか?
server.R
library(shiny)
require(rCharts)
names(iris) = gsub("\\.", "", names(iris))
shinyServer(function(input, output) {
output$myChart <- renderChart({
h1 <- hPlot(x = "Wr.Hnd", y = "NW.Hnd", data = MASS::survey,
type = c("line", "bubble", "scatter"), group = "Clap", size = "Age")
return(h1$show(cdn = TRUE))
})
})
ui.R
library(shiny)
require(rCharts)
shinyUI(pageWithSidebar(
headerPanel("rCharts and shiny"),
sidebarPanel(),
mainPanel(
showOutput("myChart")
)
))
マイRセッション情報
R version 3.0.2 (2013-09-25)
Platform: x86_64-pc-linux-gnu (64-bit)
other attached packages:
[1] shiny_0.7.0 plyr_1.8 rCharts_0.3.51 devtools_1.3 ggplot2_0.9.3.1 RMySQL_0.9-3 DBI_0.2-7