
Last chance! 50% off unlimited learning
Sale ends in
geom_point(...)
layer, but before the geom_label(...)
layer, this situation has been
demonstrated in the example below. In the event that the user wishes to suppress the mask altogether, then a convenience
function has been provided, theme_nomask()
.geom_mask()
data(Feldspar)
x = ggtern(Feldspar,aes(Ab,An,Or,label=Experiment)) + geom_point()
#Default Behaviour
x + geom_label()
#Insert manual mask before the labels, to prevent them being truncated
x + geom_point(size=6) + geom_mask() + geom_label()
Run the code above in your browser using DataLab