Pietro Vertechi

Results 220 comments of Pietro Vertechi

I think that would be ideal: I also think we should have one "sentinel" empty table object, which we return when we get an empty iterator and make sure that...

`haskey` is nice but I agree that `get` and `get!` methods sounds like the ideal solution (as well as `get` with a function argument to be run only if the...

I'm not aware of the technical advantages/disadvantages of having them be an `AbstractArray`, but maybe it'd be enough to define a `convert(::Type{AbstractArray}, t::IndexedTable)` to return the `StructArray` of rows and...

Just wanted to mention that if there is no problem to adding a default fallback, one could do ```julia import Tables TableData(x) = TableData(; Tables.columntable(x)...) ``` and support all table...

Yes, I have the same issue with the GLM analyses, because they give both a line and an error band object. It's currently not possible. Do you have suggestions for...

That code was refactored recently. I confess I was not aware that the syntax above was at all possible (it was definitely not tested), but I don't think it is...

`visual(Scatter; alpha = 0.5)` should work, do you have an example when it doesn't? That being said, `alpha` is the only attribute that is added compared to Makie. Ideally it...

Ah, thanks for reporting that, this is definitely a bug. I think AoG has trouble applying alpha if no explicit color is passed, either via `mapping` or via `visual`. You...

I think it's best to keep it open (even if it's not really actionable) as a reminder to update things on this end (remove current partial implementation) once Makie has...

I was convinced there was already an issue for this but could not find it. It could make sense to also rename `data` as part of the breaking changes discussed...