2

I want to estimate granger causality between two series. Visual inspection indicates it might be useful to normalize data first (i.e. (X-mean(x))/ (sample stdev(x)) )

Are there some caveats associated with that?

Richard Hardy
  • 54,375
  • 10
  • 95
  • 219
vladimir
  • 61
  • 6
  • Why do you normalize your data? For example, are you trying to avoid computational issues due to very different scales of the original variables? If not for computational issues, normalization should not affect inference on Granger causality just as it would not affect inference on coefficient significance in a multiple regression. – Richard Hardy Mar 25 '15 at 14:57

1 Answers1

2

Normalising your data does not affect statistical inference in a regression model (see here When conducting multiple regression, when should you center your predictor variables & when should you standardize them?). Hence, you can just carry out tests for Granger causality as per usual.

ben18785
  • 728
  • 1
  • 6
  • 18