Is a quantity increasing from 1 time step to another (x[t+1]-x[t])>0

incr(x)

Arguments

x

a vector holding a time series

Value

a logical indicating an increase

Examples

# NOT RUN {
   x=rnorm(2)
   incr(x)
# }