Hello,
I'm trying to run a pearson correlation, and everything goes well except when my data contains nulls.
My data looks like this (actual data attached):
| var1 | var2 | var3 |
| 5 | 3 | |
| 6 | 2 | 5 |
| 7 | 2 | 6 |
| 9 | | |
| 5 | 1 | 3 |
| 6 | 5 | 2 |
When entering this into pearson, the outcome says
| FieldName | var1 | var2 | var3 |
| var1 | 1 | | |
| var2 | | 1 | |
| var3 | | | 1 |
the pearson documentation recommends to use the imputation tool and replace the null values, but it's important that the calculation is identical to the excel calculation.
in Excel, a record is ignored when only one of the two values are null (cf screenshot below)
Is this a setting that I can set to the pearson tool? Or can someone suggest a method to achieve this?
I imagine a batch macro might do the trick, but that sounds kinda sloppy for what I hope is a button that I'm missing or something
?

Thanks,
Mikis