The R Project SVN R

Rev

Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 286
Line 17... Line 17...
17
    Missing values (\code{NA}s) are allowed.}
17
    Missing values (\code{NA}s) are allowed.}
18
  \item{type}{character string, telling which type of plot (\code{"p"},
18
  \item{type}{character string, telling which type of plot (\code{"p"},
19
    points; \code{"l"}, lines; \code{"b"}, both; \code{"o"}, overplotted
19
    points; \code{"l"}, lines; \code{"b"}, both; \code{"o"}, overplotted
20
    both; \code{"n"}, none; or \code{"h"}, high-density) should be done
20
    both; \code{"n"}, none; or \code{"h"}, high-density) should be done
21
    for each column of \code{y}.  The first character of \code{type}
21
    for each column of \code{y}.  The first character of \code{type}
22
    defines the first plot, the second character the second, etc. 
22
    defines the first plot, the second character the second, etc.
23
    Characters in \code{type} are cycled through; e.g., \code{"pl"}
23
    Characters in \code{type} are cycled through; e.g., \code{"pl"}
24
    alternately plots points and lines.}
24
    alternately plots points and lines.}
25
  \item{lty}{vector of line types.  
25
  \item{lty}{vector of line types.
26
    The first element is for the first column, the second element for
26
    The first element is for the first column, the second element for
27
    the second column, etc., even if lines are not plotted for all
27
    the second column, etc., even if lines are not plotted for all
28
    columns. Line types will be used cyclically until all plots are
28
    columns. Line types will be used cyclically until all plots are
29
    drawn.} 
29
    drawn.}
30
  \item{pch}{character string (length 1 vector) or vector of 1-character
30
  \item{pch}{character string (length 1 vector) or vector of 1-character
31
    strings for plotting-characters. 
31
    strings for plotting-characters.
32
    The first character is the plotting-character for the first plot,
32
    The first character is the plotting-character for the first plot,
33
    the second for the second, etc.  The default is the digits (1
33
    the second for the second, etc.  The default is the digits (1
34
    through 9, 0) then the letters.
34
    through 9, 0) then the letters.
35
%  To mix special plotting symbols (those specified by integers) and
35
%  To mix special plotting symbols (those specified by integers) and
36
%  plotting characters, either use character escapes \code{pch="Xe002"}
36
%  plotting characters, either use character escapes \code{pch="Xe002"}
37
%  or figure out the numeric equivalent of the ASCII character,
37
%  or figure out the numeric equivalent of the ASCII character,
38
%  \code{pch=c(88,2)}. 
38
%  \code{pch=c(88,2)}.
39
  }
39
  }
40
  \item{col}{vector of colors.  Colors are used cyclically.}
40
  \item{col}{vector of colors.  Colors are used cyclically.}
41
  \item{xlim, ylim}{}
41
  \item{xlim, ylim}{}
42
  \item{xlab, ylab}{}
42
  \item{xlab, ylab}{}
43
  \item{\dots}{Graphical parameters (see \code{\link{par}}) may also be
43
  \item{\dots}{Graphical parameters (see \code{\link{par}}) may also be
Line 45... Line 45...
45
    graphics control arguments described under \code{\link{par}} and the
45
    graphics control arguments described under \code{\link{par}} and the
46
    arguments to \code{\link{title}} may be supplied to this function.}
46
    arguments to \code{\link{title}} may be supplied to this function.}
47
  \item{add}{logical.  If \code{TRUE}, plots are added to current one,
47
  \item{add}{logical.  If \code{TRUE}, plots are added to current one,
48
    using \code{\link{points}} and \code{\link{lines}}.}
48
    using \code{\link{points}} and \code{\link{lines}}.}
49
  \item{verbose}{logical.  If \code{TRUE}, write one line of what is
49
  \item{verbose}{logical.  If \code{TRUE}, write one line of what is
50
    done.} 
50
    done.}
51
}
51
}
52
\section{Side Effects}{Function \code{matplot} generates a new plot;
52
\section{Side Effects}{Function \code{matplot} generates a new plot;
53
  \code{matpoints} and \code{matlines} add to the current one.}
53
  \code{matpoints} and \code{matlines} add to the current one.}
54
\description{
54
\description{
55
  Points involving missing values are not plotted.
55
  Points involving missing values are not plotted.
Line 100... Line 100...
100
        col = rainbow(3, start = .8, end = .1),
100
        col = rainbow(3, start = .8, end = .1),
101
        sub = paste(c("S", "C", "V"), dimnames(iris.S)[[3]],
101
        sub = paste(c("S", "C", "V"), dimnames(iris.S)[[3]],
102
                    sep = "=", collapse= ",  "),
102
                    sep = "=", collapse= ",  "),
103
        main = "Fisher's Iris Data")
103
        main = "Fisher's Iris Data")
104
}
104
}
105
\keyword{array}
105
\keyword{hplot}
106
\keyword{aplot}
106
\keyword{aplot}
-
 
107
\keyword{array}