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
In this example 64 points are plotted, instead of 32.
p <- plot_ly(mtcars, x = disp, y = wt, symbol = factor(vs), color = factor(am), mode = "markers") l <- plotly_build(p) sum(sapply(l$data, function(x) length(x$x))) #> [1] 64
It'd be awesome if we could extract out the existing infrastructure for ggplotly() which works this way, and take advantage of it in plotly_build().
ggplotly()
plotly_build()
The text was updated successfully, but these errors were encountered:
Actually it might be slightly easier/lighter-weight to take advantage of the new groupby transform when it gets merged.
Sorry, something went wrong.
Closed via d2bf2a1.
No branches or pull requests
In this example 64 points are plotted, instead of 32.
It'd be awesome if we could extract out the existing infrastructure for
ggplotly()
which works this way, and take advantage of it inplotly_build()
.The text was updated successfully, but these errors were encountered: