You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the initial altair chart parsing, manipulate the data to include the aggregations. See parse_chart.ChannelMetadata() (specifically _aggregate_channel()).
The text was updated successfully, but these errors were encountered:
mpl-altair currently doesn't support conversion for Altair charts that use aggregations.
Code for reproduction
data:
Example 1:
Example 2:
Actual outcome
A
NotImplementedError
is raised for anything that has aggregated data.Expected outcome
Any plot with aggregation should work.
The first chart should look something like this:
The second chart should look something like this:
Possible solution
During the initial altair chart parsing, manipulate the data to include the aggregations. See
parse_chart.ChannelMetadata()
(specifically_aggregate_channel()
).The text was updated successfully, but these errors were encountered: