I have computed two complex hulls in R (using convhulln in geometry package)
tt7
dd7
When I plot them, though:
plot(dd7, main="Convex hull for benchmark 7 with delay", xlab="Ticks per fault", ylab="Total Faults", xlim=c(550,1300), ylim=c(1650, 2400))
plot(tt7, add=TRUE, col="red")
I only get the outline of the second one - how do I get the points as well?
Cannot find any documentation for this.