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
Geom.ribbon does't accept Int vectors as input for ymin and ymax when used in combination with Geom.smooth.
http://stackoverflow.com/questions/28966555/geom-ribbon-in-gadfly-julia-does-not-accept-int-vectors-as-input
The text was updated successfully, but these errors were encountered:
At a glance, looks like can relax the T to T,S and use a promote_type to keep it type stable
T
T,S
promote_type
Sorry, something went wrong.
I don't get this error on julia 0.3 or 0.4 on gadfly master. Maybe it's accidentally fixed already?
I can't reproduce this either on Julia 0.5 and Gadfly 0.6, so this issue should be closed?
x = [-10:10;] y = x.^2 ymin = y-10 ymax = y+10 p = plot(x=x, y=y, ymin=ymin, ymax=ymax, Geom.smooth, Geom.ribbon)
Successfully merging a pull request may close this issue.
Geom.ribbon does't accept Int vectors as input for ymin and ymax when used in combination with Geom.smooth.
http://stackoverflow.com/questions/28966555/geom-ribbon-in-gadfly-julia-does-not-accept-int-vectors-as-input
The text was updated successfully, but these errors were encountered: