Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

TrendTest

Trend hypothesis test


Description

A hypothesis test for the correlation between the variable of interest and time

Usage

TrendTest(x, method = "kendall")

Arguments

x

a numeric vector or a data.frame with dates in the first column and chronologically ordered variable in the second.

method

a choice of test method. Choices are "pearson", "spearman", and "kendall"

Details

The test can be performed on a numeric vector, or a data.frame with dates in the first column and the associated variable of interest in the second. A choice can be made between a Pearson's, Spearman's Rho or Kendall's tau test. The Spearman and Kendall are based on ranks and will therefore have the same results whether dates are included or not. The default is kendall (note: for very long time series the kendall method takes a touch longer).

Value

A data.frame with columns and associated values: P_value, correlation coefficient, and method specific statistic.

Author(s)

Anthony Hammond

Examples

#Get AMAX sample and apply a trend test with the default kendall test.
AM.27083 <- GetAM(27083)
TrendTest(AM.27083)
#Apply the test with the pearson method with dates included and not
TrendTest(AM.27083, method = "pearson")
TrendTest(AM.27083$Flow, method = "pearson")

UKFE

UK Flood Estimation

v0.1.6
GPL-3
Authors
Anthony Hammond
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.