curves.ade {epade} | R Documentation |
Curves
Description
Draw points and a line between the points
Usage
curves.ade(x, y=NULL, group=NULL, data=NULL, vnames=NULL,
main=NULL, xlab=NULL, ylab=NULL, legendon="topright",
xlim=NULL, ylim=NULL, lwd=1, lwd2=1, cex=1, pch=16,
lty=1, lty2=2, col=NULL, xticks=NULL, yticks=NULL,
tcol=NULL, bgcol=NULL, alpha=NULL, fitline=0,
wall=0, v=NULL, h=NULL, diag=F, points=T)
Arguments
x |
|
y |
|
group |
|
data |
data.frame if used strings for (x,y,group) |
vnames |
a vector of character strings with the names of groups in the legend |
main |
an overall title for the plot |
xlab |
a title for the x axis |
ylab |
a title for the y axis |
legendon |
a single keyword from:
This places the legend on the inside of the plot frame at the given location. |
xlim |
the x limits (x1, x2) of the plot |
ylim |
the y limits (y1, y2) of the plot |
lwd |
line width for the lines |
lwd2 |
line width for the fited lines |
cex |
character (or symbol) expansion: a numerical value |
pch |
plotting "character", i.e., symbol to use. This can either be a single character or an integer code for one of a set of graphics symbols. |
lty |
the line types |
lty2 |
the line type for fited lines |
col |
a vector of colors for the lines of each group |
xticks |
the number of ticks on the x axis or a vector of exact ticks |
yticks |
the number of ticks on the y axis or a vector of exact ticks |
tcol |
color of the text in whole plot |
bgcol |
the background color for plot dekoration |
alpha |
a parameter in [0, 1] for semi-transparency of lines and points |
fitline |
a number between 0 and 3 to fit:
|
wall |
a number between 0 and 6 for selection the dekoration style of the plot. |
v |
the x-value(s) for vertical line(s). |
h |
the y-value(s) for horizontal line(s). |
diag |
logical asking whether to plot a diagonal line |
points |
logical asking whether to draw points |
Details
It is only a wrapper function for scatter.ade.
See Also
Examples
x<- -100:100
curves.ade(x, x^2, points=FALSE)