Samer Mouksassi
                                            Samer Mouksassi
                                        
                                    thanks ! totally understand that this might not be urgent I just wanted to share the idea here, I really like the various strip and axis options you provide
thank you for considering this in the above example I was more thinking that we specify a different position for the different levels of strips I don't know the details...
looking forward to learn more and work on s stat quantile that can do ribbons using rqss
have you tried egg ggarrange ? ``` r library(ggplot2) library(egg) #> Loading required package: gridExtra data = tibble::tibble(a = factor(rep("c", 10),levels = c("c", "x")), b = as.factor(c(rep("c", 5), rep("c", 5))),...
did you want to use scale fill manual ? this is not how scale discrete is to be used
how would the user know the "units" of say size:1.5 and would it be useful to remind users that shapes can be numeric or specific strings? shape: 19 / "circle"
I agree that customization is key and having a coherent look across geoms would make plots much more readable i.e. linetype of a grouped boxplot follow the same logic as...
in your case patchwork can help you doing what you want ``` r library(patchwork) library(ggplot2) library(dplyr) #> #> Attaching package: 'dplyr' #> The following objects are masked from 'package:stats': #>...
a quick fix would be to manually pad with spaces until you have a simiar strwidth this is not a solution but prevent you form needing to manually edit your...
Hi yes indeed my use case is more complex where I build a plot layer by layer and where user can add a point that should match the positon of...