ggside icon indicating copy to clipboard operation
ggside copied to clipboard

ggplot2 extension allowing for plotting various geometries as side panels using the ggplot2 API

Results 4 ggside issues
Sort by recently updated
recently updated
newest added

Thanks for the great package. But the development version of `ggplot2` has some big (changes)[https://github.com/tidyverse/ggplot2/blob/main/NEWS.md#ggplot2-development-version]. the current version of `ggside` is not compatible with it. ``` > library(ggplot2) > packageVersion('ggplot2')...

**_Hi Justin,_** ggside PKG is superb! + a quick Q: Is it possible to add more than 1 ggside plot along **_both_** the x and y axes?. _ie:_ both, a...

Hi! Here's my snippet: ```r figure % ggplot(aes(x=`Avg Dups (%)`, y=`Unique Aligned (%)`)) + # main plot geom_point(size=3) + scale_x_continuous( expand=c(0,0), limits=c(0,100), breaks=c(0,10,20,30,40,50,60,70,80,90,100), labels=function(x) paste0(x, "%", sep="") ) + scale_y_continuous(...

Hi, I really like how easy this package it makes to add a side plot. While it by default uses a 'top' and 'right' layout for the side plots, is...