Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rdboyes committed Apr 17, 2024
1 parent 1ac355f commit 0c4627c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Add basic support for any Makie plot using `geom_template(name, required_aes, ma
geom_raincloud = geom_template("geom_raincloud", ["x", "y"], :RainClouds)

ggplot(penguins) +
geom_raincloud(aes(x = :species, y = :bill_depth_mm, color = :species), size = 4) +
geom_raincloud(aes(x = :species, y = :bill_depth_mm/10, color = :species), size = 4) +
scale_y_continuous(labels = "{:.1f} cm") +
labs(title = "Bill Depth by Species", x = "Species", y = "Bill Depth") +
theme_minimal()
Expand Down

0 comments on commit 0c4627c

Please sign in to comment.