Does anyone know how to turn off the term labels that a appear on a multivariate plot via the candisc r package? Here is an example plot:
Note the CLR, BAL_OC and YAM_OC term labels, I would like to remove these and use a legend (which I have already coded but not shown). I used the following code:
plot(sc, term = "Estuary", col=c("chartreuse", "blue4",
"aquamarine3", "coral", "brown", 'burlywood2', "cadetblue", "black",
"azure3", "chocolate", "blueviolet"), pch=c(0,1, 2, 3, 4 ,5
,6,7,8,9,10,11))
legend(-10, 2, c('Bal_Oc', 'CLR', 'GGR', 'HKR', 'HUR', 'MLR', 'MNR',
'PST', 'RMR', 'SHR', 'Yam_Oc'), pch=c(pch=c(0,1, 2, 3, 4
,5,6,7,8,9,10,11)), title="Estuary", col=c("chartreuse", "blue4",
"aquamarine3", "coral", "brown", 'burlywood2', "cadetblue", "black",
"azure3", "chocolate", "blueviolet"))
Any help would be appreciated.