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 get `Error in if (any(negative)) { : missing value where TRUE/FALSE needed` error with NA values, na.rm=TRUE and geom_autohistogram and/or geom_autodensity. Here is an example: ``` ds

This would be nice for PCA plots (like in your example) where the range of the observed values might be different from what the plot should show.

It would be great if you could pass a labeller to `facet_matrix()`, for example to use `label_parsed()` to render plot math expressions. However `facet_matrix()` doesn't accept a `labeller` argument that...

Hi, I know that 0.1.1 is quite outdated but I was trying to run an old analysis and ran into a problem with the newer versions. It's a grouped data...

`make.unique` changes the sort order of its input. Switch to `make_unique` from ggraph

Swapping the axis and strip text does not seem possible. Could a `position.y.axis` argument be added to achieve this? ```r library(ggplot2) library(ggforce) ggplot(iris, aes(.panel_x, .panel_y)) + geom_point() + geom_autodensity() +...

This PR implements `stat_err()` which draws intervals of points in x- and y- directions. A following example shows that `stat_err()` appears to be more intuitive than the combination of `geom_errorbar`...

By this PR, math in facets' stripe becomes quite easy. ![image](https://user-images.githubusercontent.com/30277794/62988487-93b8da00-be7f-11e9-8cb8-5eeb81f2c79c.png) ```r library(dplyr) library(ggplot2) library(ggforce) d % mutate(y = dnorm(x)) ggplot(d, aes(x, y)) + geom_line() + facet_wrap(~ facet, labeller =...

Hi, Thank you for your many great packages! I think there is a bug in geom_circle() The error seems to come when if aes( x = [something], y = [something_else])...