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
Scatter traces in plotly will now support a colorscale (known as a gradient in ggplot2), so this example:
qplot(data = iris, x = Sepal.Length, y = Petal.Length, color = Petal.Width)
should use a colorscale like this:
The text was updated successfully, but these errors were encountered:
For future reference, I've been playing with this on #226, and have a working version for plot_ly() which could fairly easily be brought over to ggplotly()
plot_ly()
ggplotly()
plot_ly(data = iris, x = Sepal.Length, y = Petal.Length, color = Petal.Width, mode = "markers")
(another factor to consider in all this is that discretizing continuous color scales can be perceptually advantageous).
Sorry, something went wrong.
Has this been partially implemented? I noticed it is working (really well) for geom_tile(), but not geom_point() or geom_line().
This should be fixed in f1900cc.
No branches or pull requests
Scatter traces in plotly will now support a colorscale (known as a gradient in ggplot2), so this example:
should use a colorscale like this:
The text was updated successfully, but these errors were encountered: