plotly.R
plotly.R copied to clipboard
An interactive graphing library for R
Although the documentation for Plotly in R mentions the hoversubplots argument (see [Plotly R Documentation](https://plotly.com/r/reference/layout/#layout-hoversubplots)), I encountered the following warning when attempting to use it in my plots: Warning: 'layout'...
Brief description of the problem: 1) For a **first** click on a(ny) legend entry there is **no** member $visible at all, even though the markers are not visible. 2) For...
## Description of the issue When I try to display any given number of `barpolar` plots using the `subplot()` function, plotly only shows one plot that has somehow aggregated all...
I want to use _subplot_ function to plot 6 ggplots in a 2 rows x 4 columns grid. Here is a reproducible example: ``` figlist
I think there is something wrong with the subplot function when there is `yaxis2` I tried to use `subplot` with 2 plots that have `yaxis2`. Each plot looks like this:...
When plotting a time-series with milliseconds, Plotly rounds the data on the x-axis to the nearest second. ```r x
I would like to see `geom_lv()` from the `lvplot` library added to ggplotly. Here is an example: ```{r} # Load libraries library(ggplot2) library(lvplot) library(plotly) # Sample data set.seed(123) data
Hello, I would like to know when you can implement the geom_density_ridges() from ggridges R package to run with ggplotly. I am just following the package instructions: In geom2trace.default(dots[[1L]][[15L]], dots[[2L]][[1L]],...
When I try use expression object as lab labels, `ggplotly` raises an error. ```r p Everything is ok up to now ggplotly(p) #> Error in unique.default(x) : unimplemented type 'expression'...
Hi, I am trying to make an interactive plot using `crosstalk` where the user selects a variable from a drop down menu and the plot updates to show only data...