I\'m having a bit of difficulty figuring out how to recreate the following graphic of a spider (or radar) chart, using plotly. Actually, I can\'t even recreate it in the most re
As far as I can see you have already obtained your plot with ggplot2 (example picture ). If this is true the easiest think you should do to add plotly functionalities to your plot is running ggplotly()
on your ggplot object , like within the example below:
install.packages(c("ggplot2","plotly"))
library(ggplot2)
library(plotly)
plot <- ggplot(data =mtcars, aes(x = mpg, y = cyl))+
geom_point()
ggplotly (plot)
which will result into the following interactive plot: