plotly.R icon indicating copy to clipboard operation
plotly.R copied to clipboard

An interactive graphing library for R

Results 337 plotly.R issues
Sort by recently updated
recently updated
newest added

When creating a ggplot with geom_rect the order in which the data is provided is honored. Once converted via ggplotly the drawing order changes and therefore geom_rect objects may e.g....

There seems to be a discrepancy between plotly for R and for python in how it handles zooming across facets. To take my examples directly from the documentation: https://plotly.com/ggplot2/facet-plots/ vs...

Multiline is successfully set in the ggplot object with `labeller = ggplot2::label_wrap_gen(width = 15, multi_line = TRUE)` but then displays incorrectly when passed to `ggplotly` ![myplot_facetgrid](https://user-images.githubusercontent.com/76230119/171582475-39e6505f-0c76-4e2b-bf48-e1a904fac7ba.png) ```r df

I recently introduced `ggplotly()` to my students, and several who use Windows machines reported that nothing was rendered when the following code was executed: ```library(tidyverse) library(gapminder) library(plotly) p % ggplot(aes(gdpPercap,...

reproducible example needed

In `ggplot::geom_rect()`, one can specify the aesthetics `ymin = -Inf` and `ymax = Inf`, which will draw the rectangles to the limit of the plotting area. Apparently, `ggplotly` does not...

bug
ggplotly

Trying to make a linked bar chart that links with other charts using crosstalk and shiny. **Issue**: When clicking the plot, it stacks on top instead of just highlighting ![image](https://user-images.githubusercontent.com/1075118/169362809-b0d4de15-e306-4094-afdd-22b083ff6548.png)...

In https://plotly.com/r/subplots/#customizing-subplot-axes it is described, that xaxis/yaxis apply to all axis in the subplots. > After a figure with subplots is created using the subplot function, its axis properties (title,...

Following on from #225, here is an an example where ordering of traces is wrong ```r set.seed(12345) df1 = data.frame( x = seq(1, 200), y = 100 + cumsum(rnorm(200)) )...