Display$line.unsorted {IdMappingAnalysis} | R Documentation |
Draw a curve from unsorted points.
## Static method (use this): ## Display$line.unsorted(x, y, type="l", ...) ## Don't use the below: ## S3 method for class 'Display' line.unsorted(static, x, y, type="l", ...)
x |
The (unsorted) x coordinates of points to plot. |
y |
The correponding y coordinates of points to plot. |
type |
Line type. Default is "l"." |
... |
Additional graphical parameters |
Alex Lisovich, Roger Day
For more information see Display
.
## Not run: plot.new(); plot.window(c(min(x),max(x)),c(min(y),max(y))); Display$line.unsorted(x,y); ## End(Not run)