JuliaDynamics / RecurrenceAnalysis.jl

Recurrence Quantification Analysis in Julia
https://juliadynamics.github.io/RecurrenceAnalysis.jl/stable/
MIT License
45 stars 12 forks source link

Plot recipes #80

Closed asinghvi17 closed 5 years ago

asinghvi17 commented 5 years ago

Any plans for Plots.jl? Would be happy to help.

Datseris commented 5 years ago

No, not really. All plotting is done via converting RecurrenceMatrix to plottable data, using the functions recurrenceplot, coordinates, grayscale.

But if you want a recipe you can go ahead and PR, I don't think anyone will say no :P

asinghvi17 commented 5 years ago

I think that just a scatter plot using coordinates should be fine. Plots may choke with large numbers of elements; Makie should be fine, though, if you use spy on the sparse matrix. Note that since OpenGL does not accept booleans-as-numbers, you need to plot SparseMatrixCSC{Int64, Int64}(rmat.data)