julia> @df skipmissing(g75bldn) [...]
ERROR: Only tables are supported
which I suppose is because it returns a Base.SkipMissing{DataFrame} type which StatsPlots doesn't like to injest. If I try
julia> @df g75bldn plot([...], skipmissing=true)
nothing changes, same as above, the line is still broken.
I know there are ways with for loops over columns and so on, but it completely defeats the purpose and ease of the @df macro, especially given how easy it automatically handles groups.
Trying to plot using the
@df
macro with missing data and I get broken lines.I get ue)
If I try with
skipmissing
, I getwhich I suppose is because it returns a
Base.SkipMissing{DataFrame}
type which StatsPlots doesn't like to injest. If I trynothing changes, same as above, the line is still broken.
I know there are ways with for loops over columns and so on, but it completely defeats the purpose and ease of the
@df
macro, especially given how easy it automatically handles groups.