plotly.R icon indicating copy to clipboard operation
plotly.R copied to clipboard

geom_circle not implemented in plotly

Open white2tj opened this issue 3 years ago • 0 comments


Receive the below ERROR when trying to use plotly. Works perfectly fine outside of plotly.

geom_GeomCircle() 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

 ggp <- ggplot(positions_updated, aes(x=.data[[Issue3]], y=.data[[Issue4]], label=Stakeholder)) +
      geom_circle(aes(x0=.data[[Issue3]], y0=.data[[Issue4]], r=distance, fill=Stakeholder),alpha=.1, inherit.aes=FALSE) +
      geom_text() +
      #ggtitle("Spatial Bargaining") +
      coord_fixed() +
      theme(legend.position = "bottom") +
      xlab(Issue3) +
      ylab(Issue4) 
    ggp + geom_point(aes(x=status_quo_x, y=status_quo_y))

white2tj avatar May 05 '22 12:05 white2tj