powered by
Function to calculate the length (duration in years) of wet or dry periods.
spellLengths(s)
Returns a list object containing a vector of dry spell lengths and a vector of wet spell lengths.
A binary vector of 0 dry and 1 wet only.
#use 0 for dry and 1 for wet years spells = c(0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0) spellLengths(spells)
Run the code above in your browser using DataLab