Search found 1 match

by WorkScientist
Thu Feb 21, 2019 3:53 pm
Forum: Help
Topic: [RESOLVED] Calculate mean with missing values
Replies: 10
Views: 63358

Re: [RESOLVED] Calculate mean with missing values

I'm testing out the ignore_missing=1 functionality, and it seems that it works to average two vectors' values (ignoring missing) for missing values on the second vector, but not first. For example (where . indicates a missing value),
X Y MEAN(X,Y,missing=1)
2 . .
3 5 4
. 3 3

Possibly I'm missing a ...