nb_exc: Values higher or equal to Zobs

Description Usage Arguments Value Author(s) Examples

Description

Computes how many values of the data set z are higher or equal to the test statistic x0.

Usage

1
nb_exc(x0,z)

Arguments

x0

the test statistic - real number.

z

the data set - list of real numbers.

Value

Returns an integer M which is the number of values of z higher or equal to x0.

Author(s)

Marion

Examples

1
2
3
4
5
6
7
8
nb_exc(5,1:10)

## The function is currently defined as
function (x0,z)
{
M<-length(z[z>=x0])
return(M)
  }

genostats/tail.modeling documentation built on May 12, 2019, 7:42 a.m.