plotly.R
plotly.R copied to clipboard
An interactive graphing library for R
While `ggplot` produces legends for each aesthetic (other than x & y), after calling `ggplotly` on the result, only one legend remains (although both titles display). ```r library(tidyverse) library(gapminder) library(plotly)...
Thank you for your great work, a big step forward in data visualization! Unfortunately, similar to #1560, I get a confusing warning, if I render a `plot.ly` created by `plotly::ggplotly(.)`:...
Adding "add_annotations" to many points on any plot, cause slow performance. Please see the below minimal example ``` library(shiny) library(plotly) library(quantmod) ui
Fix for #2376 and #994. Simply adds boxmode as a valid attribute option in the attrs_name_check function of utils.R. Warning no longer appears for boxmode option. Tests run without error...
Hi, I have create an alluvial using the following code: ``` plot_1
Warning message from {RColorBrewer} can be confusing. Is this something the average {plotly} user should be concerned with and work around in his own code? Seems to be related to...
Fixes all roxygen2 warnings and improves documentation formatting at some places. See the individual commits for details. Some more useful info on `@export`ing S3 methods is found in this comment...
``` r subplot(plot_ly(z = ~volcano), plot_ly(z = ~volcano, type = "surface")) ```
It would be elegant to be able to create interactive parallel coordinate plots with plotly layered on the ggpcp library. Users should be able to select a line (or lines)...
I have a number of plots that I am trying to synchronize and draw a highlighted point on in response to a users search. This works fine except when they...