-
Notifications
You must be signed in to change notification settings - Fork 53
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
Misleading error message #271
Comments
The error-message for the second code snipper id currently
Which also doesn't seem right. |
alshan
added a commit
that referenced
this issue
Aug 3, 2021
…ype of the scale (discrete/continuous). Related to #271.
alshan
added a commit
that referenced
this issue
Aug 3, 2021
alshan
added a commit
that referenced
this issue
Aug 5, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Too big threshold stat_corr parameter can lead to misleading error message.
This error is not related to stat_corr, similar message will be produced with the following code snippet:
from lets_plot import *
LetsPlot.setup_html()
data = { 'x': [] }
(ggplot(data) +
geom_point( mapping=aes(x='x', y = 'x', color='x')) +
scale_color_gradient2(breaks = [-1.0, 0.0, 1.0], limits =[-1.0, 1.0]))
The text was updated successfully, but these errors were encountered: