timelyportfolio / rcdimple

htmlwidgets for rCharts + dimple
http://www.buildingwidgets.com/blog/2015/3/18/week-11-dimple-as-htmlwidget
MIT License
28 stars 9 forks source link

rcdimple and waffle #28

Closed giorjet closed 8 years ago

giorjet commented 8 years ago

Hi, I'm trying to turn waffle static charts in interactive. This is my simple code:

install.packages("waffle") devtools::install_github("timelyportfolio/rcdimple") library(waffle) library(rcdimple) parts <- c( 80, 30, 20, 10 ) as_rcdimple( waffle( parts, rows=8) )

but It gives this error:

Error: could not find function "as_rcdimple"

and if I install waffle in this way:

devtools::install_github("hrbrmstr/waffle") the error is:

Error in [[<-.data.frame(tmp, fml$left.name, value = NAreal) : replacement has 1 row, data has 0 In addition: Warning message: axis.ticks.margin is deprecated. Please set margin property of
axis.text instead

Could You help me?