Skip to content
Prev 10361 / 15274 Next

Compute jump test statistic

What do you want to do with all of the NAs in your data.  You can't
apply functions like max to data with NA
[1] 1
[1] NA

Maybe you want to use na.omit?
[1] 1

HTH,
Garrett
On Mon, Jun 18, 2012 at 4:29 PM, G See <gsee000 at gmail.com> wrote: