Kendall-package {Kendall} | R Documentation |
Compute Kendall's rank correlation and various trend tests.
Package: | Kendall |
Type: | Package |
Version: | 2.1 |
Date: | 2009-01-27 |
License: | GPL (>= 2) |
LazyLoad: | yes |
If you just want to compute Kendall's tau or its signficance level,
the base function cor
and cor.test
are recommended.
The purpose of this package is to implement the Mann-Kendall test,
the seasonal Mann-Kendall trend test as well as computing the
Kendall score.
A. I. McLeod
Maintainer: aimcleod@uwo.ca
Hipel, K.W. and McLeod, A.I., (2005). Time Series Modelling of Water Resources and Environmental Systems. Electronic reprint of our book orginally published in 1994. http://www.stats.uwo.ca/faculty/aim/1994Book/.
cor
,
cor.test
,
print.Kendall
,
summary.Kendall
,
MannKendall
,
SeasonalMannKendall
library(boot) data(PrecipGL) MKtau<-function(z) MannKendall(z)$tau tsboot(PrecipGL, MKtau, R=500, l=5, sim="fixed")