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
hello,
i am using Gadfly (v1.3) and julia (v1.4.2) on a wn10 64bit machine
the code
f(x)=x/(1-x) plot(f,0,0.8, yintercept=1.5, Geom.hline(style=:dot))
produces an error
Couldn't process recipe args: (typeof(f), Int64, Float64, Gadfly.Geom.HLineGeometry)
what am I missing?
The text was updated successfully, but these errors were encountered:
Gadfly mainly expects vectors for aesthetics (unless your referring to a column in a Dataframe), even one-length vectors. This works for me:
using Gadfly f(x)=x/(1-x) p = plot(f,0,0.8, yintercept=[1.5], Geom.hline(style=:dot))
Also see #1430 which lists the current syntaxes available for the color aesthetic.
Sorry, something went wrong.
Closing this issue because it's been answered here and on stackoverflow
No branches or pull requests
hello,
i am using Gadfly (v1.3) and julia (v1.4.2) on a wn10 64bit machine
the code
produces an error
what am I missing?
The text was updated successfully, but these errors were encountered: