The R Project SVN R

Rev

Rev 59039 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
42333 ripley 1
% File src/library/stats/man/plot.density.Rd
68948 ripley 2
% Part of the R package, https://www.R-project.org
59039 ripley 3
% Copyright 1995-2007 R Core Team
42333 ripley 4
% Distributed under GPL 2 or later
5
 
27442 ripley 6
\name{plot.density}
56186 murdoch 7
\alias{plot.density}
27442 ripley 8
\title{Plot Method for Kernel Density Estimation}
9
\usage{
10
\method{plot}{density}(x, main = NULL, xlab = NULL, ylab = "Density", type = "l",
11
     zero.line = TRUE, \dots)
12
}
13
\arguments{
42961 ripley 14
\item{x}{a \code{"density"} object.}
27442 ripley 15
\item{main, xlab, ylab, type}{plotting parameters with useful defaults.}
16
\item{\dots}{further plotting parameters.}
17
\item{zero.line}{logical; if \code{TRUE}, add a base line at \eqn{y = 0}}
18
}
19
\description{
20
  The \code{plot} method for density objects.
21
}
22
\value{
23
  None.
24
}
25
\seealso{
26
  \code{\link{density}}.
27
}
28
\keyword{dplot}