Dean Attali

Results 542 comments of Dean Attali

The problem seems to come from this validation check: https://github.com/plotly/dashR/blob/5c80285b90c24cf15375e6763b56425e9dc530ce/R/utils.R#L458-L460 It also seems that the error happens when: - number of outputs > 1 - number of inputs > 1...

It would be useful to add this bit of information to the setup vignette The current steps are as follows for Shiny: ``` - Click ‘Create a new Client ID’,...

Probably the same as https://github.com/rpremraj/mailR/issues/100 - look at their solution

Thank for letting us know!

You can do that right now. Just call `ggMarginal()` with a plot that has a `geom_hex` layer instead of `geom_point`. ``` library(ggplot2) library(ggExtra) d

Thanks. You could technically still do it with ggExtra by also adding `+ geom_point(col="transparent")` but it's not very efficient because the geom_point takes a long time ``` library(ggplot2) library(ggExtra) d

I'm comfortable with that, under the assumption that it will also work correctly of course :) I tried seeing what happens if we check for point OR hex, and didn't...

Agreed. This can remain open as I'm not opposed to supporting it if a natural solution presents itself

I've been having similar thoughts because it finally clicked to me recently that the tidyverse mantra is to always be up to date on ALL packages, and if one package...

If it's more than a few sentences, then we'd add a CONTRIBUTING file. For reference can see [shiny's CONTRIBUTING file](https://github.com/rstudio/shiny/blob/master/CONTRIBUTING.md)