如何将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
和{{}的示例1}}。我最初的尝试:
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
时,我最终会看到以下内容:
我已经尝试将html分解为其标题,图表和页脚,但这也不起作用:
gwidgetsWWW2::load_app()
非常感谢任何建议。此外,如果没有 # 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
代码(例如http://www.magesblog.com/2012/08/rook-rocks-example-with-googlevis.html处给出的代码)使用Rook
代码?如果是这样,我该怎么做呢?
非常感谢。