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

Hello. I added a text argument to ggplot and then converted it into plotly. Html worked in the sense it appeared with the underline, showing it is infact a clickable...

# An error arises when mix an empty object with ggplot-derived plotly in subplot ```r library(plotly); library(ggplot2) df

--- Hi, The following is affecting my ability to use ggplotly: When color = Species and group = 1, all dots should be connected, irrespective of species, but ggplotly does...

Currently a plot like this: ```R library(reshape2) library(plotly) p

Hello, I try to plot dynamic graphs in a simple dashboard page, here a simple example: **ui.r part** ``` library(shiny) library(ggplot2) library(plotly) library(shinydashboard) ui > Matrix products: default > BLAS:...

Hi folks, I'm seeing a strange effect on scatter plot marker sizes, when using a formula for the `color` (and `name`) attributes. _(edited to add more test cases)_ ``` r...

--- legend order and x axis of bar graph is not fully ordered alphabetically, capital letters take priority causing miss aligned error bars due to different order. only way to...

Hi, Legend names are sometimes not passed when using frame option. ```r #This is working (without frame) plot_ly()%>%add_markers(1:3,2:4)%>%add_markers(1:3,2:4,name="New name") #This is not (with frame) plot_ly()%>%add_markers(1:3,2:4,frame=c(1,1,2))%>%add_markers(1:3,2:4,frame=c(1,2,2),name="New name") #This is working (with...

Calling `ggplotly` on `ggplot` invoking `geom_area` results in a plot in which the tooltip activates when hovering over the "lines" separating the areas. I would have expected the tooltip to...

Brief description of the problem I am trying to render a plotly plot on a shiny app. the package heatwaveR has created geom_flame and geom_lolli whcih aren't yet supported in...