Skip to content

geom_GeomQqBand() has yet to be implemented in plotly #1705

Closed
@ObristD

Description

@ObristD

It would be nice to have geom_qq_band() option from the qqplotr package available in plotly to draw confidence intervals in plots.

Here is a minimal reprex:

library(plotly)
library(ggplot2)
library(qqplotr)

df <- data.frame(x = rnorm(50))

p <- ggplot(data = df, mapping = aes(sample = x)) +
  geom_qq_band(conf = .99, fill = "blue", alpha = 0.5) +
  stat_qq_line() +
  stat_qq_point() +
  labs(x = "Theoretical Quantiles", y = "Sample Quantiles")

ggplotly(p)

### Warning message:
### In geom2trace.default(dots[[1L]][[1L]], dots[[2L]][[1L]], dots[[3L]][[1L]]) :
###  geom_GeomQqBand() has yet to be implemented in plotly.
###  If you'd like to see this geom implemented,
###  Please open an issue with your example code at
###  https://github.com/ropensci/plotly/issues

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions