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

https://github.com/plotly/plotly.R/issues/1528#issuecomment-2514223180 is an in-depth overview of why this option is necessary.

Hi, I tried to make a plot with a zoom and with dynamic ticks. But after the rendering there is no zoom. ```r library(plotly) df = data.frame(x=rnorm(100), y=rnorm(100)) g %...

Would you mind adding this funcitonality? Thanks!! ``` install.packages('ggalt') library(ggalt) data %>% ggplot(aes(y = reorder(Department, median_completion, decreasing = TRUE))) + geom_dumbbell(aes(x = min_completion, xend = max_completion), color = "gray70", size...

Given: ``` library(ggplot2) library(gridExtra) library(plotly) library(colorRamps) d

Fixed a bug in which, if the plot only has one annotation but the 'font' attribute has multiple elements (such as color and size), the annotation becomes duplicated. This was...

Support factor variables for x and/or y when numeric variable is used to set color. See https://github.com/plotly/plotly.R/issues/1883 and also https://stackoverflow.com/questions/45217616/colors-in-plotly-range-not-meaningful-for-factors. The proposed workaround to convert to character before plotting does...

When using the `bargroupgap` argument, there is a warning printed to the console: > Warning: 'layout' objects don't have these attributes: 'bargroupgap' However, the property is properly applied to the...

I get an error message when trying to implement geom_xspline with plotly. I get the desired graph in ggplot2 but the plot cannot be converted to a plotly object when...

When I try to take color from numeric variable and one of the axes is factor, it raises error `Error in Summary.factor(...) : ‘range’ not meaningful for factors`: ```r data(mpg)...

Same issue as #2357 and #5926. Same minimal reproducible example still throws up the errors: Warning in min(x, na.rm = na.rm) : no non-missing arguments to min; returning Inf Warning...