Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

geom_text_repel not working in plotly.... #1071

Closed
rajan5660 opened this issue Jul 9, 2017 · 1 comment
Closed

geom_text_repel not working in plotly.... #1071

rajan5660 opened this issue Jul 9, 2017 · 1 comment

Comments

@rajan5660
Copy link

#load the data
data <- read.csv("https://raw.githubusercontent.com/plotly/datasets/master/school_earnings.csv")

#bubble chart with ggplot
g<-ggplot(data, aes(x = Women, y = Men, label =School ))+
geom_point(aes(size =gap,alpha=0.5),shape=21, stroke = 0.5,colour = "black")+
geom_text_repel(size = 3,fontface = 'bold', color = 'black',segment.alpha = 0,segment.color = 'grey50' )

#plot output with ggplot
g
image

#using ggplolty to convert ggplot to plolty
ggplotly(g)

#plot output with ggplotly

image

But this did not print text of bubbles and give warning

Warning messages:
1: We recommend that you use the dev version of ggplot2 with ggplotly()
Install it with: devtools::install_github('hadley/ggplot2')
2: In geom2trace.default(dots[[1L]][[1L]], dots[[2L]][[1L]], dots[[3L]][[1L]]) :
geom_GeomTextRepel() 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

image

I am using ggplot to render the plot because i didn't found any way in plotly to repel the overlapping labels when the number of bubbles are more on plot

@rajan5660 rajan5660 changed the title geom_text_repel not working in plolty.... geom_text_repel not working in plotly.... Jul 9, 2017
@cpsievert
Copy link
Collaborator

Duplicate of #566

@cpsievert cpsievert marked this as a duplicate of #566 Jul 14, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants