1

I'm performing trend analysis on certain parameters like LAI,NDVI etc. I use CDO-trend operator for the same. But CDO doesn't give the significance value. Is there any other operator in CDO or way to get trend of any variable along with the significance value?

ClimateUnboxed
  • 7,106
  • 3
  • 41
  • 86

2 Answers2

2

You can use NCO to access GSL's gsl_fit_linear() function, then follow these steps to compute the p value.

Bart
  • 9,825
  • 5
  • 47
  • 73
Charlie Zender
  • 5,929
  • 14
  • 19
0

cdo appears to perform a simple linear regression against time. Statistical significance of the trend slope would be highly affected by seasonality and any other serial correlation in the data. The seasonal Mann-Kendall test is designed to cope with this. (See the Kendall R package). Another approach might be to model the time series using ARIMA coefficients along with trend coefficient.

Robert Davy
  • 866
  • 5
  • 13