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
I'm working on QuickVega.jl, and I'd like to pass kwargs to @vlplot, for example:
kwargs
function scatterplot(data; x_col=:x, y_col=:y, kwargs...) # assumes Tables.jl format data |> @vlplot(:circle, x=x_col, y=y_col; kwargs...) end
But this does not work. Is there a standard/recommended way of doing?
The text was updated successfully, but these errors were encountered:
It would probably be easiest to use the function, rather than the macro version, of vlplot.
vlplot
Sorry, something went wrong.
No branches or pull requests
I'm working on QuickVega.jl, and I'd like to pass
kwargs
to @vlplot, for example:But this does not work. Is there a standard/recommended way of doing?
The text was updated successfully, but these errors were encountered: