Skip to content

Commit

Permalink
Merge pull request #44 from tee-lab/md-autocorr
Browse files Browse the repository at this point in the history
Model diagnostics now shows |x| autocorrelation.
  • Loading branch information
arshednabeel committed Sep 21, 2022
2 parents f055488 + df0bd77 commit bcce5e1
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pydaddy/daddy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1462,8 +1462,11 @@ def model_diagnostics(self, oversample=1):
alpha=self.fitters['G12'].alpha,
library=self.fitters['G12'].library)

lags, acf_x = self._ddsde._acf(x[0], t_lag=min(len(x[0]), 1000))
_, acf_y = self._ddsde._acf(x[1], t_lag=min(len(x[1]), 1000))
lags, acf_actual = self._ddsde._acf(self._data_M,
t_lag=min(len(x[0]), 1000))

lags, acf_est = self._ddsde._acf(np.sqrt(x[0] ** 2 + x[1] ** 2),
t_lag=min(len(x[0]), 1000))

fig = plt.figure(figsize=(12, 12), dpi=100)
gs = fig.add_gridspec(3, 3)
Expand All @@ -1481,9 +1484,9 @@ def model_diagnostics(self, oversample=1):
self._show_histograms_1d(ax_modm, self._data_M, np.sqrt(x[0] ** 2 + x[1] ** 2), xlabel='$|\mathbf{x}|$',
title='$|\mathbf{x}|$ histogram')

self._acf_plot_multi(ax_acf, acf_x, acf_y, lags, None, None,
label1='$\\rho_{x}$', label2='$\\rho_{y}$',
title='Autocorrelation')
self._acf_plot_multi(ax_acf, acf_actual, acf_est, lags, None, None,
label1='Original', label2='Reestimated',
title='$|\mathbf{x}|$ autocorrelation')

self._show_functions_2d(ax_f1, self.F1, F1hat, title='$F_{1}$')
self._show_functions_2d(ax_f2, self.F2, F2hat, title='$F_{2}$')
Expand Down

0 comments on commit bcce5e1

Please sign in to comment.