ggforce icon indicating copy to clipboard operation
ggforce copied to clipboard

Accelerating ggplot2

Results 143 ggforce issues
Sort by recently updated
recently updated
newest added

Hi! I really enjoy your package and I've used facet_wrap_paginate and facet_grid_paginate multiple times, was wondering is there a way facet_nested_wrap from the ggh4x package could be somehow inputed also?...

related https://github.com/thomasp85/ggforce/issues/51 reprex: ``` x % head(n=1) %>% ggplot(aes(x=grp, y=y)) + geom_sina() ## no dots plotted, gives warning ``` > Warning message: > Computation failed in `stat_sina()`: > `binwidth` must...

Sorry - I know this is not a bug, but I'd like your opinion on it anyway. The reprex below shows how I would use `geom_circle` to draw a circle...

feature

Would it be possible to use facet_zoom to zoom in into two ranges within the x-axis? So basically, xlim(1,10) and xlim(20,30) will be shown in two separate panels.

Hi Thomas I am following the steps you posted in your article "The ggforce Awakens (again)" to generate a sanky diagram in R but I am getting the following warning...

Hello, Thank you for a very useful package. It would be handy to be able to map `label.colour` to the data as an aesthetic. As an example: ``` r library(ggplot2)...

Is it possible to use facet_zoom on multiple plots wrapped in a facet_wrap?

feature

Hi Thomas, `facet_wrap_paginate` seems to fail now with faceted plots when the last page contains only one panel: ```R ggplot(diamonds) + geom_point(aes(carat, price), alpha = 0.1) + facet_wrap_paginate(~ cut:clarity, ncol...

Example 1 works as expected but example 2 gives only 1 colour and shows only the 'y' label in the legend ``` library(tidyverse) library(ggforce) ex1 = data.frame(a = c("x1"), b...