Skip to content
New issue

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

Custom legend not working for tinyplot.formula(..., type = "density") #194

Open
grantmcdermott opened this issue Aug 4, 2024 · 0 comments

Comments

@grantmcdermott
Copy link
Owner

The legend here should be positioned inside the plot frame...

library(tinyplot)

tinyplot(
  ~ Petal.Length | Species, iris,
  type = "density", fill = "by",
  legend = "topright"
)

... in contrast, the atomic method correctly adjusts and positions the legend.

with(
  iris,
  tinyplot(
    Petal.Length,
    by = Species,
    type = "density", fill = "by",
    legend = "topright"
  )
)

Created on 2024-08-04 with reprex v2.1.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant