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
Creating a vertical beewarm works without issues. Creating the same plot horizontal does not seem to give the expected result.
# download data download("https://raw.githubusercontent.com/mwaskom/seaborn-data/master/penguins.csv", "penguins.csv") # read data penguins = dropmissing(DataFrame(CSV.File("penguins.csv"))) # create plot set_default_plot_size(12cm, 16cm) plot( penguins, x = :sex, y = :body_mass_g, color = :species, Geom.beeswarm, Scale.color_discrete_manual("#5377C9", "#DF8A56", "#82CA70"), Theme(background_color = "white"), )
set_default_plot_size(16cm, 12cm) plot( penguins, x = :body_mass_g, y = :sex, color = :species, Geom.beeswarm, Scale.color_discrete_manual("#5377C9", "#DF8A56", "#82CA70"), Theme(background_color = "white"), )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Creating a vertical beewarm works without issues.
Creating the same plot horizontal does not seem to give the expected result.
The text was updated successfully, but these errors were encountered: