We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I currently used the package ggalluvial to create alluvial diagram. And It would be nice to see geom_GeomAlluvium() supported by ggplotly(). Here is an example that I used the code pulished on https://cran.r-project.org/web/packages/ggalluvial/vignettes/ggalluvial.html
library(plotly) library(ggalluvial) p = ggplot(as.data.frame(Titanic), aes(y = Freq, axis1 = Survived, axis2 = Sex, axis3 = Class)) + geom_alluvium(aes(fill = Class), width = 0, knot.pos = 0, reverse = FALSE) + guides(fill = FALSE) + geom_stratum(width = 1/8, reverse = FALSE) + geom_text(stat = "stratum", label.strata = TRUE, reverse = FALSE) + scale_x_continuous(breaks = 1:3, labels = c("Survived", "Sex", "Class")) + coord_flip() + ggtitle("Titanic survival by class and sex") ggplotly(p)
The text was updated successfully, but these errors were encountered:
Thanks for the example code, I've added to the list in #566
Sorry, something went wrong.
I implemented a to_basic method for both geom_stratum and geom_alluvium. Will be running tests and adding a pr in the next hours
to_basic
geom_stratum
geom_alluvium
Closes plotly#1614. Implemented to_basic for the geom_alluvium an…
c2621ac
…d `geom_stratum`
ggalluvial
moutikabdessabour
Successfully merging a pull request may close this issue.
I currently used the package ggalluvial to create alluvial diagram.
And It would be nice to see geom_GeomAlluvium() supported by ggplotly().
Here is an example that I used the code pulished on https://cran.r-project.org/web/packages/ggalluvial/vignettes/ggalluvial.html
The text was updated successfully, but these errors were encountered: