如何使用googleVis
图表gWidgetsWWW2
?我已经看到可以googleVis
使用Rook
(http://www.magesblog.com/2012/08/rook-rocks-example-with-googlevis.html和https://cran.r-project.org/web /packages/googleVis/vignettes/googleVis.pdf)但我还没有找到任何使用googleVis
with的例子gWidgetsWWW2
。我最初的尝试:
require(gWidgetsWWW2)
require(googleVis)
w <- gwindow("hello")
sb <- gstatusbar("Powered by gWidgetsWWW and Rook", cont=w)
g <- ggroup(cont=w, horizontal=FALSE)
M <- gvisMotionChart(Fruits, idvar="Fruit", timevar="Year")
ghtml(M$html, cont = g) # Trying html only
我最终看到以下内容gwidgetsWWW2::load_app()
:
我也尝试将 html 分解为其页眉、图表和页脚,但这也不起作用:
# ghtml(M$html$header, cont = g) # Trying header only
# ghtml(M$html$chart, cont = g) # Trying chart
# ghtml(M$html$footer, cont = g) # Trying footer only
非常感谢任何建议。此外,如果没有gWidget
直接允许使用googleVis
图表的工具,是否可以集成Rook
代码(例如http://www.magesblog.com/2012/08/rook-rocks-example-with -googlevis.html ) 的gWidgetWWW2
代码?如果是这样,我该怎么做呢?
非常感谢。