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

When trying to use `geom_sf` with a units variable it fails. It works nice with base `plot`, and also with other geometries (i.e. `geom_point`). A reproducible example: ``` r library(sf)...

Hi! Very cool package, especially with the addition of parallel set diagrams. Thank you for making it! It'd be lovely to be able to add labels to the diagonals to...

This small fix solves the problem if you have a short description, a long label title and `label.width = NULL`. It fixes the issue I created for this (#207). I...

``` library(ggplot2) library(ggforce) ggplot(iris, aes(Petal.Length, Petal.Width, colour = Species)) + geom_point() + geom_vline(xintercept = 4) + facet_zoom(xy = Species == 'versicolor') ``` `Error in scale_index[[i]] : subscript out of bounds`...

I'd like to use `geom_mark_rect` with a histogram, but this doesn't seem to work as it expects a `y` aesthetics. Here is a reprex: ```r library(ggplot2) library(ggforce) library(dplyr) #> #>...

I'm really happy that these scales exist, but unfortunately there are some problems that may or may not arise from this. I have been trying to investigate but I could...

delete the from example description

After updating R and its associated packages (ggforce, ggplot etc), facet_wrap_paginate no longer works when I only have one plot for the page. Previously having one plot and nrow =2,...

I installed `ggforce`, tried below codes and I got nothing **hulled**. Actually there isn't any message why it does not work. ``` mpg %>% ggplot(aes(x = displ, y = hwy))...