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

I tried to make a corrplot like figure using `ggforce::geom_circle` using ~100 * 100 circles. This takes exceptionally long and consumes a lot of memory. I also noticed that when...

geom_sina introduces a nontrivial amount of y jitter (aka inaccuracy in plotted data values). **See this reprex:** library(ggforce) a=c(1,2,3,4,5); b=c(1,1,1,1,1); data=tibble(a=a,b=b); ggplot(data,aes(x=b,y=a)) + geom_sina() I have not been able to...

Hi Thomas, I am currently using ggforce v0.3.2 from CRAN (and ggplot2 v3.3.2) and encountered the same incorrect angle of the ellipses using `geom_mark_ellipse()`, although only for few cases in...

Hello, `geom_mark_ellipse` does not seem to be filling the ellipses correctly - it misses out some colour mappings - e.g. for one of the examples in the documentation: ``` r...

Is there a way to make the radius argument in geom_shape to apply to both 'inside' and 'outside' corners of a shape? When something like a step shape is used,...

``` r library(ggplot2) library(ggforce) ggplot() + geom_ellipse(aes(x0 = 0, y0 = 0, a = 10, b = 3, angle = 0), alpha = .1) + coord_fixed() ``` ![](https://i.imgur.com/N5O1JWA.png) Created on...

Hello, I am using R with jupyter notebook (rpy2) and cannot solve this issue. Can anyone give at least pointers please? ``` %%R library(tibble) library(dplyr) library(forcats) library(tidyr) library(purrr) library(psych) library(stringr)...

I am trying to make a large red quarter circle using the code below. I want the circle to have a width of 20. 1. Does the size parameter work...

It would be great if continuous color scales could also have units. Example: ``` library(ggplot2) library(units) library(ggforce) # Plot looks great without units: ggplot(iris, aes(x=Sepal.Length, y=Sepal.Width, color = Petal.Length)) +...