OLE.horn: calculates Horn's Ro

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/OLE-horn.R

Description

calculates Horn's Ro from two datasets

Usage

1
2
OLE.horn(data1, data2, CheckData = TRUE, datapoints = NULL,
  Interpolate = TRUE)

Arguments

data1

list: like returned by either the estdist() and uniform() functions (only if CheckData = TRUE) or by the kernelest() and normalize() function.

data2

list: like returned by either the estdist() and uniform() functions (only if CheckData = TRUE) or by the kernelest() and normalize() function.

CheckData

logical; If TRUE the EstimatorData() function will be runned in advance.

datapoints

numeric (whole numbers); will be passed as funcdatapoints-argument to the EstimatorData() Function and so represents the amount of datapoints which shall be drawn from an possible input function .

Interpolate

logical; will be passed to EstimatorData() function.

Details

calculates Horn's Ro from two datasets, a dataset should be a list which contains either a function (only if CheckData = TRUE) or a data.frame which represents the corresponding probability density function. If CheckData is set False it will go through all the points in the datasets and will not treat it as continous data, meaning, that if the datasets do not share the same points, the result may be calculated wrong. If DataCheck is set TRUE it will run data processing in advance with the EstimatorData() function.

Value

numeric value representing Horn's Ro.

Author(s)

Florian Berger <florian_berger@ymail.com>

See Also

scale

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#Create Datasets
 a     <- c(1:10)
 dates1 <- as.Date(a, origin = '2017-01-01')
 count1 <- c(1,1,3,4,6,9,5,4,2,1)
 dat1   <- data.frame(dates1, count1)
 b     <- c(6:15)
 dates2 <- as.Date(b, origin = '2017-01-01')
 count2 <- c(1,2,4,5,6,9,3,4,1,1)
 dat2   <- data.frame(dates2, count2)
 
 #Calculate corresponding probability densities
 a1 <- estdistr(dat1, returnonlyfunction = FALSE)
 b1 <- kernelest(dat2)
 
 #Calculate Horn's Ro
 OLE.horn(a1,b1)

biometry/phenologicalOverlap documentation built on May 21, 2019, 2:31 a.m.