Currently, plot functions accept data with type AbstractMatrix{Real}. This means that the code throws a MethodError when passed data that allows for or includes missing values.
When plotting multiple time series with different frequencies / time spans, there can be quite a bit of messy wrangling required before passing the data through to the plotting functions in PGFPlots.
If it were possible to accept data as AbstractMatrix{Union{Missing,Real}}, then for PGFPlots to drop the Missings for each trace before plotting, that would be much appreciated.
Currently, plot functions accept data with type
AbstractMatrix{Real}. This means that the code throws aMethodErrorwhen passed data that allows for or includesmissingvalues.When plotting multiple time series with different frequencies / time spans, there can be quite a bit of messy wrangling required before passing the data through to the plotting functions in PGFPlots.
If it were possible to accept data as
AbstractMatrix{Union{Missing,Real}}, then for PGFPlots to drop the Missings for each trace before plotting, that would be much appreciated.