plotly.R
plotly.R copied to clipboard
An interactive graphing library for R
--- Trying to add labels to a plot_ly chart with GeomTextRepel() from ggrepel packge but am getting this error: "Warning in geom2trace.default(dots[[1L]][[1L]], dots[[2L]][[1L]], dots[[3L]][[1L]]) : geom_GeomTextRepel() has yet to be...
Hi all For some reason, deselection is not consistent while using animation slider from R api of plotly. Every time I change the vlaue of the slider deselected traces reappear....
Hi, First of all, thanks for this great package. I am creating a R package to create custom `plotly` plots, and would like to include unit tests within this package....
--- Whenever I plot a 3d scatter with color and symbol, the colorbar seems to be duplicated. This issue does not occur when symbol is removed so I believe it...
I'm developing Shiny apps in a platform, where the graphical engine in RStudio (browser version) needs to be **AGG**. When making interactive plots with `ggplotly` the app crashes when running...
I would like to produce a scatter plot in HTML format where labels are associated with each point. This works well when I export the plot in PDF or PNG...
# Expected behavior When making a stacked area chart, the ordering of the legend values follows the ordering of the `legendrank` argument. # Actual behavior When making a stacked area...
``` library(palmerpenguins) library(tidyverse) p ggplot(aes( x = flipper_length_mm, y = body_mass_g, col = sex)) + geom_blank() + geom_point() p plotly::ggplotly(p) ```
It'd be useful, if this would work to create tooltips ``` library(tidyverse) library(palmerpenguins) p ggplot() + geom_blank(aes(flipper_length_mm, body_mass_g)) plotly::ggplotly(p) ```
When using ggplotly with a log-scale plot, the tick labels will be the exponent, not the actual value. ```r df = data.frame(x=10^(1:10), y = 10^(1:10)) plot = ggplot(df, aes(x, y))...