Ryan Hafen
Ryan Hafen
The culprit is `ggplot2_2.2.1.9000`. There are breaking changes with the dev version (soon to be released on CRAN) that will need to be sorted out. For now, you can use...
I have the same versions of everything (RStudio, R, trelliscopejs) but I'm on a mac and it works for me. Can you try the following: ```r options(viewer = NULL) ```...
You can't convert a ggplot object that includes `facet_trelliscope()` to plotly in this way. Instead of: ```r G = ggplot(data = Final_Tab) + geom_col(aes(x = KO, y = percentage, fill...
Interesting. I'm afraid I don't have any other ideas without a [reprex](http://reprex.tidyverse.org). Is there a way you can replicate the error with a fake dataset? As for `as_plotly`, that does...
Thanks for the example. This code works for me, which makes me wonder if there is a version issue. Please post the results of `sessionInfo()`.
It looks like you are using the development version of ggplot2. Can you try it with ggplot2 from CRAN?
I have updated the internals so it should be compatible now with the latest ggplot2 changes. @TukDwal can you reinstall and see if this fixes your issue?
What version of trelliscopejs are you using? This has been fixed in 0.1.12.
Currently unfortunately this isn't supported but I see it as a top priority use case and I'll look into it. It will take quite a bit of refactoring on the...
Here's an example based on yours: ```r mpg %>% mutate(class = factor(class, levels = my_order), class_index = as.integer(class)) %>% group_by(class, class_index) %>% nest() %>% mutate(panel = map_plot(data, ~ ggplot(data =...