Replies: 1 comment 2 replies
-
Thank you for starting this discussion. I try to understand the issue you are having, but unfortunately the current information given is not enough. It's already great that you provide your Altair specification as text, but to provide meaningful feedback it is much appreciated if you could try to elaborate, preferably with a minimal reproducible example (including data), that can be copied, that showcases the problem you are having. Thank you! |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The data is a range of linux scheduler slice, which is like:
|ts|ts_end|cpu|cpu2|
|0|10|1|1|
|5|20|2|2|
I have a altair chart below.
And I have another chart to calculate the histogram in the extent of selection internal(zoom range acatually)
But altair will calculate the 'ts>interval.min()' by default, that will cause the data incorrect because many slices is dropped which are'ts<interval.min() and ts_end<interval.max()"
so could I use span operation on ts/ts_end and interval?
I find span is supported in vega expression but it's diffcult for me to use it.
And this is an example from perfetto:
Beta Was this translation helpful? Give feedback.
All reactions