R make interactive needle plot using plotly package
I want to make an interactive needle plot using R package plotly similar as described here By using ggplot2 and plotly, I could easily make an interactive needle plot: library(ggplot2) library(plotly) p <- ggplot(data.frame(x=1:10, y=1:10), aes(x=x, ymax=y, ymin=0)) + geom_linerange() ggplotly(p) However, when the data size is too big, the above code to generate the… Read More R make interactive needle plot using plotly package