-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Can ggplot2
adopt orphaned ggtern
package?
#6197
Comments
I don't have any problem rendering a ggtern plot. library(ggtern)
#> Loading required package: ggplot2
#> Registered S3 methods overwritten by 'ggtern':
#> method from
#> grid.draw.ggplot ggplot2
#> plot.ggplot ggplot2
#> print.ggplot ggplot2
#> --
#> Remember to cite, run citation(package = 'ggtern') for further info.
#> --
#>
#> Attaching package: 'ggtern'
#> The following objects are masked from 'package:ggplot2':
#>
#> aes, annotate, ggplot, ggplot_build, ggplot_gtable, ggplotGrob,
#> ggsave, layer_data, theme_bw, theme_classic, theme_dark,
#> theme_gray, theme_light, theme_linedraw, theme_minimal, theme_void
packageVersion("ggplot2")
#> [1] '3.5.1'
data("Feldspar")
ggtern(Feldspar, aes(Ab, An, Or)) +
geom_point() Created on 2024-11-22 with reprex v2.1.1
The latest CRAN release dates to 2024-03-24. I think the author prefers development on bitbucket rather than github: https://bitbucket.org/nicholasehamilton/ggtern/src/master/.
I'm unclear where the author has stated this.
It is ggplot2's policy to limit new features to either easy to maintain features or widely useful improvements. Ternary plots are rather specialised and, I imagine, hard to maintain. For these reasons, I'd say it is unlikely that ggplot2 will adopt ggtern. |
Well would you look at that. Bitbucket. I wish the author would have posted on their GitHub or shut that repo down. Looks like that solves all the problems! Thank you! |
ggtern
is a great package that builds ontoggplot2
by adding ternary plot functionality. Unfortunately, the package has not been updated in over 9 years and officially ceased to work withggplot2
after the recent upgrade to version3.5
. See nicholasehamilton/ggtern#57.Is
ggplot2
interested in adoptingggtern
in some way?Or is someone in the community interested in forking it and make the (likely small) tweaks to get it compatible with
ggplot2 3.5
?The text was updated successfully, but these errors were encountered: