I extended cadence_features.py, with two new functions: compute_time_lag_stats and compute_time_lag_skew_kurtosis. The compute_time_lag_stats function calculates the mean and standard deviation of the time lags, while the compute_time_lag_skew_kurtosis function computes the skewness and kurtosis. The additions offer support for time lag distributions, offering insights into their central tendency, dispersion, and shape.
Added test functions to validate the correctness of compute_time_lag_stats and compute_time_lag_skew_kurtosis by computing the mean, standard deviation, skewness, and kurtosis for a given array of time lags.
I extended cadence_features.py, with two new functions: compute_time_lag_stats and compute_time_lag_skew_kurtosis. The compute_time_lag_stats function calculates the mean and standard deviation of the time lags, while the compute_time_lag_skew_kurtosis function computes the skewness and kurtosis. The additions offer support for time lag distributions, offering insights into their central tendency, dispersion, and shape.