szhan / pyrqa

Recurrence Quantification Analysis of Large-Scale Time Series
Apache License 2.0
29 stars 8 forks source link

ignoring theiler_corrector for plotting #3

Open johnjwatson opened 4 years ago

johnjwatson commented 4 years ago

In the documentation you say that:

The corresponding recurrence plot is created likewise. Note that the parameter theiler_corrector is ignored regarding the creation of the plot.

followed by this snippet:

from pyrqa.computation import RPComputation
from pyrqa.image_generator import ImageGenerator
computation = RPComputation.create(settings)
result = computation.run()
ImageGenerator.save_recurrence_plot(result.recurrence_matrix_reverse,
                                    'recurrence_plot.png')

I am not sure how you are ignoring theiler_corrector here. Can someone explain this pleasE?