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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Due to the shorthand string syntax, using chars like ( or : in the Encoding can give unexpected results:
(
:
Encoding
julia > Encoding("Beak Length (mm):Q") Deneb.EncodingSpec: { "x": { "aggregate": "Beak Length ", "field": "mm", "type": "quantitative" } }
At the moment there are no escaping rules to avoid that. In the meantime one can simply use the verbose syntax without the shorthands:
> julia> Encoding(x=(field="Beak Length (mm)", type=:quantitative)) Deneb.EncodingSpec: { "x": { "field": "Beak Length (mm)", "type": "quantitative" } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Due to the shorthand string syntax, using chars like
(
or:
in theEncoding
can give unexpected results:At the moment there are no escaping rules to avoid that. In the meantime one can simply use the verbose syntax without the shorthands:
The text was updated successfully, but these errors were encountered: