Skip to content

Commit

Permalink
removes debug_plot from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CSchoel committed Oct 30, 2023
1 parent a593699 commit 5ad438f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nolds/test_measures.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def test_lorenz(self):
data = datasets.lorenz_euler(n + discard, 10, 28, 8/3, start=(1,1,1), dt=0.012)
x = data[discard:,1]
rvals = nolds.logarithmic_r(1, np.e, 1.1) # determined experimentally
cd = nolds.corr_dim(x, emb_dim, fit="poly", rvals=rvals, lag=5, debug_plot=True)
cd = nolds.corr_dim(x, emb_dim, fit="poly", rvals=rvals, lag=5)
self.assertAlmostEqual(cd, 2.05, delta=0.1)

def test_logistic(self):
Expand Down

0 comments on commit 5ad438f

Please sign in to comment.