plotly.R
plotly.R copied to clipboard
An interactive graphing library for R
If this is not done (or similar), in rare situations the `recurse` function splits the variable list into parts if it happens to match length of the column to split...
**Issue Summary** When using plot_ly() in R with a scatter plot (mode = "lines+markers"), missing (NA) values are expected to create gaps in the line plot. However, if exactly two...
I would like plotly to support `ggrepel::geom_text_repel`. I prepare the following shiny that works with plotOutput but not with plotlyOutput : ``` library(shiny) library(plotly) library(ggplot2) library(ggrepel) library(bslib) ui
``` library(ggplot2) library(plotly) end_points % group_by(Species) %>% filter(Sepal.Length == max(Sepal.Length)) # Create the plot g = ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species, group = Species)) +...
**Description:** In my Plotly chart with a rangeslider, I'm facing a dilemma with axis labels (ticks). Without using `tickvals`, the chart incorrectly displays Sunday as the start of the week....
remotes::install_github("jespermaag/gganatogram") library(gganatogram) library(tidyverse) male_system % filter(type %in% "nervous_system") %>% gganatogram(organism = "human", sex = "male", fill = "colour", outline = FALSE) + theme_void() + coord_fixed() ggplotly(male_system)
## Description Currently plotly does no support labels created with `ggrepel::geom_text_repel`. ## Feature requested It is possible to make ggplotly compatible with labels generated with `ggrepel` package?
Tried to convert ggplot object to an interactive plotly object using ggplotly(), the geom_GeomFitText() component isn't supported and won't render properly. summary_cat
The current implementation for a selection highlighting adds duplicate legend entries. For example in the below screenshot I clicked on trace "Alpha" and a new legend item "Alpha" got added...
### Description When converting a `ggplot2` plot to plotly using `ggplotly()`, the generated tooltip does not contain aesthetic entry if its name is equal to 'group'. Would it be like...