[Vegan-commits] r715 - pkg/vegan/man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Wed Mar 4 06:50:22 CET 2009


Author: psolymos
Date: 2009-03-04 06:50:22 +0100 (Wed, 04 Mar 2009)
New Revision: 715

Added:
   pkg/vegan/man/diagnose.permat.Rd
Removed:
   pkg/vegan/man/permat.tsdiag.Rd
Log:
rename tsdiag Rd file


Copied: pkg/vegan/man/diagnose.permat.Rd (from rev 712, pkg/vegan/man/permat.tsdiag.Rd)
===================================================================
--- pkg/vegan/man/diagnose.permat.Rd	                        (rev 0)
+++ pkg/vegan/man/diagnose.permat.Rd	2009-03-04 05:50:22 UTC (rev 715)
@@ -0,0 +1,72 @@
+\encoding{UTF-8}
+\name{permat.tsdiag}
+\alias{plot.permat}
+\alias{lines.permat}
+\alias{lagplot.permat}
+\alias{lagplot}
+\alias{permat.tsdiag}
+\alias{print.permat.tsdiag}
+
+\title{Diagnostic Tool for Matrix Permutation Algorithms}
+
+\description{ Plotting and diagnostic methods for 'permat' objects, that are useful in evaluating the performance of different null model settings, especially that of the sequential algorithms.}
+
+\usage{
+\method{plot}{permat}(x, type = "bray", ylab, xlab, col, lty,
+lowess = TRUE, plot = TRUE, text = TRUE, ...)
+\method{lines}{permat}(x, type = "bray", ...)
+lagplot(x, ...)
+\method{lagplot}{permat}(x, type = "bray", ...)
+permat.tsdiag(x, type = "bray")
+\method{print}{permat.tsdiag}(x, ...)
+}
+\arguments{
+  \item{x}{Object of class \code{"permat"} created by the functions \code{\link{permatfull}} and \code{\link{permatswap}}.}
+  \item{ylab, xlab, col, lty}{graphical parameters for the \code{plot} method.}
+  \item{type}{Character, type of plot to be displayed: \code{"bray"} for Bray-Curtis dissimilarities, \code{"chisq"} for Chi-squared values.}
+  \item{lowess, plot, text}{Logical arguments for the \code{plot} method, whether a lowess curve should be drawn, the plot should be drawn, and statistic values should be printed on the plot.}
+  \item{\dots}{Other arguments passed to methods.}
+} 
+
+\details{
+
+The functions \code{lagplot} \code{permat.tsdiag} are useful for testing independence of permuted matrices
+when using sequential algorithms.
+
+}
+
+\value{
+The \code{permat.tsdiag} returns a list including first order autoregressive model and Ljung-Box test results to diagnose independence of the statistics (Bray-Curtis, Chi-square) derived from successive permuted matrices.
+}
+\author{\enc{P\'eter S\'olymos}{Peter Solymos}, \email{solymos at ualberta.ca} and Jari Oksanen}
+
+\seealso{
+For functions to create 'permat' objects: \code{\link{permatfull}}, \code{\link{permatswap}}
+
+For time-series diagnostics: \code{\link{Box.test}}, \code{\link{lag.plot}}, \code{\link{tsdiag}}
+}
+\examples{
+data(BCI)
+## Not sequential algorithm
+a <- permatswap(BCI, "quasiswap")
+## Sequential algorithm
+b <- permatswap(BCI, "abuswap", fixedmar="col",
+burnin=0, thin=100, times=50)
+opar <- par(mfrow=c(2,2))
+plot(a, main="Not sequential")
+plot(b, main="Sequential")
+plot(a, "chisq")
+plot(b, "chisq")
+par(opar)
+## The lagplot is useful to diagnose independence
+## of successive simulations for sequential algorithms
+lagplot.permat(a, main="Not sequential") # independent
+lagplot.permat(b, main="Not sequential") # highly non-independent
+## Time series diagnostics
+permat.tsdiag(a)
+permat.tsdiag(b)
+}
+
+\keyword{multivariate}
+\keyword{datagen}
+

Deleted: pkg/vegan/man/permat.tsdiag.Rd
===================================================================
--- pkg/vegan/man/permat.tsdiag.Rd	2009-03-04 04:41:06 UTC (rev 714)
+++ pkg/vegan/man/permat.tsdiag.Rd	2009-03-04 05:50:22 UTC (rev 715)
@@ -1,72 +0,0 @@
-\encoding{UTF-8}
-\name{permat.tsdiag}
-\alias{plot.permat}
-\alias{lines.permat}
-\alias{lagplot.permat}
-\alias{lagplot}
-\alias{permat.tsdiag}
-\alias{print.permat.tsdiag}
-
-\title{Diagnostic Tool for Matrix Permutation Algorithms}
-
-\description{ Plotting and diagnostic methods for 'permat' objects, that are useful in evaluating the performance of different null model settings, especially that of the sequential algorithms.}
-
-\usage{
-\method{plot}{permat}(x, type = "bray", ylab, xlab, col, lty,
-lowess = TRUE, plot = TRUE, text = TRUE, ...)
-\method{lines}{permat}(x, type = "bray", ...)
-lagplot(x, ...)
-\method{lagplot}{permat}(x, type = "bray", ...)
-permat.tsdiag(x, type = "bray")
-\method{print}{permat.tsdiag}(x, ...)
-}
-\arguments{
-  \item{x}{Object of class \code{"permat"} created by the functions \code{\link{permatfull}} and \code{\link{permatswap}}.}
-  \item{ylab, xlab, col, lty}{graphical parameters for the \code{plot} method.}
-  \item{type}{Character, type of plot to be displayed: \code{"bray"} for Bray-Curtis dissimilarities, \code{"chisq"} for Chi-squared values.}
-  \item{lowess, plot, text}{Logical arguments for the \code{plot} method, whether a lowess curve should be drawn, the plot should be drawn, and statistic values should be printed on the plot.}
-  \item{\dots}{Other arguments passed to methods.}
-} 
-
-\details{
-
-The functions \code{lagplot} \code{permat.tsdiag} are useful for testing independence of permuted matrices
-when using sequential algorithms.
-
-}
-
-\value{
-The \code{permat.tsdiag} returns a list including first order autoregressive model and Ljung-Box test results to diagnose independence of the statistics (Bray-Curtis, Chi-square) derived from successive permuted matrices.
-}
-\author{\enc{P\'eter S\'olymos}{Peter Solymos}, \email{solymos at ualberta.ca} and Jari Oksanen}
-
-\seealso{
-For functions to create 'permat' objects: \code{\link{permatfull}}, \code{\link{permatswap}}
-
-For time-series diagnostics: \code{\link{Box.test}}, \code{\link{lag.plot}}, \code{\link{tsdiag}}
-}
-\examples{
-data(BCI)
-## Not sequential algorithm
-a <- permatswap(BCI, "quasiswap")
-## Sequential algorithm
-b <- permatswap(BCI, "abuswap", fixedmar="col",
-burnin=0, thin=100, times=50)
-opar <- par(mfrow=c(2,2))
-plot(a, main="Not sequential")
-plot(b, main="Sequential")
-plot(a, "chisq")
-plot(b, "chisq")
-par(opar)
-## The lagplot is useful to diagnose independence
-## of successive simulations for sequential algorithms
-lagplot.permat(a, main="Not sequential") # independent
-lagplot.permat(b, main="Not sequential") # highly non-independent
-## Time series diagnostics
-permat.tsdiag(a)
-permat.tsdiag(b)
-}
-
-\keyword{multivariate}
-\keyword{datagen}
-



More information about the Vegan-commits mailing list