plotly.R
plotly.R copied to clipboard
An interactive graphing library for R
By this PR, we can convert ggplot to plotly by implementing `gginteractive()`. In addition, `gginteractive` has the `interactive` argument to control the conversion. ```r ggplot(mtcars, aes(wt, mpg)) + geom_point() +...
This changes the default behaivor of ggplotly() to render `geom_boxplot()` as low-level polygons rather than plotly.js box traces. As result, we'll be able to exactly replicate the ggplot2 result in...
This is a small cleanup to the `subplot()` grid layout logic: when defining the new domains of Y axis, `get_domains()` sets the new `ystart` > `yend`, but later in `subplot()`/`reposition()`...
TODO: how hard would it be to get this respecting aesthetic mappings? For example, `plot_ly(iris) %>% add_parcoords(color = ~Species)`
See #1401 for more context ## Review questions - [ ] Is it safe to remember event data by attaching an attribute to `graphDiv` in this way? Should try this...
TODO: - [ ] Converters for **ggforce**'s `GeomMarkCircle`/`GeomMarkEllipsis`/`GeomMarkHull` - [ ] Converter for **ggraph**'s `GeomAxisHive` (path + text?). For example, see https://github.com/thomasp85/ggraph/blob/8d23845/R/geom_axis_hive.R#L123-L142 - [ ] Add relevant `key` attributes. -...
The color picker currently has a text cursor when you hover over it. I've changed this to a `cursor: pointer` style, now it should be more obvious that the color...
TODO: - [ ] tests (seems as though opacity dimming isn't working as of 951727c) - [ ] benchmarks