TidierOrg / TidierPlots.jl

Tidier data visualization in Julia, modeled after the ggplot2 R package.
MIT License
218 stars 8 forks source link

`draw` is not passing extra arguments from geoms to `Makie` #83

Closed adknudson closed 5 months ago

adknudson commented 5 months ago

Unless an option is specified in the expected_types dict, it is not passed to Makie. MWE:

# orientation is not passed to Makie
ggplot(penguins) +
    geom_boxplot(@aes(x = species, y = bill_length_mm), orientation = :horizontal)

I'm already working on a fix for this.