Ordiellipse plot, part of ellipses are shown in bottom left corner, no other information is shown
I am trying to create an NMDS plot with bee species data grouped by the presence/absence of mines. In the following line of code beematrix=species abundances by site and beesmine= defines which sites contain mined areas.
beematrix=read.csv(file.choose(), row.names = 1)
beesmine=read.csv(file.choose(), row.names = 1)
beesmatrix=as.matrix(beematrix)
beematrix=t(beesmatrix)
library(vegan)
rankindex(beematrix, beematrix)
bees.nmds=metaMDS(beematrix, distance = "kulczynski")
for (i in 1:5) print (metaMDS(beesmatrix, distance = "kulczynski", k=i, trace = FALSE)$stress*100)
bees.nmds=metaMDS(beesmatrix, distance = "kulczynski", k=3)
plot(bees.nmds)
plot.new()
ordiellipse(bees.nmds, groups=beesmine$Mine,label = TRUE)
##ordiellipse is smushed into corner of screen and is impossible to read