You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
It would be nice to have
geom_qq_band()
option from theqqplotr
package available in plotly to draw confidence intervals in plots.Here is a minimal reprex:
The text was updated successfully, but these errors were encountered: