Chris Baker

Results 55 comments of Chris Baker

@daattali , do we want to relax the assumption that there has to be a geom_point layer for ggMarginal to try to create the marginals? In other words, do we...

Ergh, you're right. It would be possible to use the underlying data, but it would add additional complexity to the codebase and I don't think it would be worth it....

KK, I'll get around to refactoring test code sometime soon.

Turns out this is a really hairy issue. I think it can be fixed, but it leads to some *very* confusing code, so much so that I'm not sure it's...

Do you mean you want to set the limits of the marginal plots to be different from the limits used in the scatter plot?

Try using xlim/ylim or scale_x_continuous/scale_y_continuous: ``` r library(ggplot2) library(ggExtra) p Warning: Removed 28 rows containing missing values (geom_point). ``` ![](https://i.imgur.com/hNykrd5.png) Created on 2019-06-03 by the [reprex package](https://reprex.tidyverse.org) (v0.2.0.9000).

Hmm, my first thought is probably not, there won't be a way to do that b/c it will require coord_cartesian. If you can provide an example of the type of...

Hi @pricklpitty , thanks for clarifying/for the good examples. Unfortunately what you want to do would require a fix to how ggMarginal deals with the the "cartesian" coordinate system (i.e.,...

I'm not sure if this would be all that feasible to support. We pull the title/subtitle grob out of the built scatter plot (see `getTitleGrobs()`). If the built scatter plot...