There are two ggflags
packages from github
that I am currently using to display national flags with the same function of geom_flag
. The difference between these two packages is that one display flags in rectangular form ("ellisp/ggflags") and the other in the round form ("rensa/ggflags").
My current solution is to devtools::install_github("ellisp/ggflags")
when I switch to rectangular form, and devtools::install_github("rensa/ggflags")
when switch to round shape. Although it works, I need repeatedly install those packages. Just wonder if there are alternatives to install both packages at the same time and to call the one needed, or any other options to let two packages co-exist on my machine.