Ryan Hafen

Results 203 comments of Ryan Hafen

Interesting. Can you send a small reproducible example?

Interesting. "prettyunits" is a dependency of "progress", which trelliscopejs uses for progress bars, but it should get installed automatically along with everything else.

That's interesting. I'll have to play around with installation in a clean environment to see what's going on.

This is a good request and I actually have implemented a fix for it, but it's part of a few other enhancements I'm testing so hopefully it will be available...

I think I have an idea of where you are going here. Can you provide a dummy example of a dataset that would make use of this functionality?

Interesting. I'm not sure what it might be about 3d that would be making it not work. Could you copy and paste the code in your screenshot as a reply...

@schloerke, how difficult would it be to add an internal function for ggplot2 plots, `extract_axes()`, that pulls out the red and blue parts of the example plot shown below and...

These will be called from `facet_trelliscope()` which requires width and height. These are the dimensions at which the plots are saved (the viewer takes care of scaling based on layout)....

I recently updated the package to work more nicely with Shiny. These changes are located in the dev branch, which you can install with ```r remotes::install_github("hafen/trelliscopejs@dev") ``` Please give it...

Can you try this and see if it works: ```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,...