[R-gregmisc-users] SF.net SVN: r-gregmisc:[1491] trunk/gplots
Brought to you by:
warnes
|
From: <wa...@us...> - 2011-09-01 21:41:16
|
Revision: 1491
http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1491&view=rev
Author: warnes
Date: 2011-09-01 21:41:10 +0000 (Thu, 01 Sep 2011)
Log Message:
-----------
- Correct issues in ci2d() man page.
Modified Paths:
--------------
trunk/gplots/NAMESPACE
trunk/gplots/man/ci2d.Rd
Modified: trunk/gplots/NAMESPACE
===================================================================
--- trunk/gplots/NAMESPACE 2011-09-01 20:10:44 UTC (rev 1490)
+++ trunk/gplots/NAMESPACE 2011-09-01 21:41:10 UTC (rev 1491)
@@ -47,8 +47,6 @@
#importFrom(KernSmooth, bkdeD2)
#importFrom(KernSmooth, dpik)
-
-
S3method(balloonplot,default)
S3method(balloonplot,table)
Modified: trunk/gplots/man/ci2d.Rd
===================================================================
--- trunk/gplots/man/ci2d.Rd 2011-09-01 20:10:44 UTC (rev 1490)
+++ trunk/gplots/man/ci2d.Rd 2011-09-01 21:41:10 UTC (rev 1491)
@@ -8,20 +8,17 @@
Create 2-dimensional empirical confidence regions from provided data.
}
\usage{
-ci2d <- function(x,
- y = NULL,
- nbins=51,
- method=c("bkde2D","hist2d"),
- bandwidth,
- factor=1.0,
- ci.levels=c(0.50,0.75,0.90,0.95,0.975),
- show=c("filled.contour","contour","image","none"),
- col=topo.colors(length(breaks)-1),
- show.points=FALSE,
- pch=par("pch"),
- points.col="red",
- xlab, ylab,
- ...)
+ci2d(x, y = NULL,
+ nbins=51, method=c("bkde2D","hist2d"),
+ bandwidth, factor=1.0,
+ ci.levels=c(0.50,0.75,0.90,0.95,0.975),
+ show=c("filled.contour","contour","image","none"),
+ col=topo.colors(length(breaks)-1),
+ show.points=FALSE,
+ pch=par("pch"),
+ points.col="red",
+ xlab, ylab,
+ ...)
}
\arguments{
\item{x}{either a vector containing the x coordinates
@@ -35,6 +32,8 @@
the 2-d density summarizing the data. Defaults to "bkde2D".}
\item{bandwidth}{Bandwidth to use for \code{KernSmooth::bkde2D}.
See below for default value. }
+ \item{factor}{Numeric scaling factor for bandwidth. Useful for
+ exploring effect of changing the bandwidth. Defaults to 1.0.}
\item{ci.levels}{Confidence level(s) to use for plotting
data. Defaults to \code{c(0.5, 0.75, 0.9, 0.95, 0.975)} }
\item{show}{Plot type to be displaed. One of "filled.contour",
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|