-
-
Notifications
You must be signed in to change notification settings - Fork 622
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem with repeated values on x-axis #49
Comments
I am afraid that this time I will not be able to give you a quick fix.. |
I guess I got a bit greedy, seeing how quickly you made the other fixes. I suppose I can put some effort into cleaning my data up a bit :) However, is there any reason this should not work on an XY plot? Because, for me it does not. |
it is really a problem of data structures. It might look as a simple feature from the outside but it will affect many parts of the code, not just the XY plot (several corner cases should be taken into account). Don't hesitate anyway to ask for improvements. if I can, I am usually happy to work on them. |
Sure I understand. Anyways, 2/3 fixes within 24 hours is a very decent score :) |
Could we leave the issue open? I understand that It won't get fixed in the near future (or maybe ever :) and there are straightforward workarounds, but I feel like the feature itself is not unreasonable. |
of course it is not unreasonable ;) |
One year later... |
Great, thanks! :) |
A repeated value on the x-axis inhibits further plotting. This file demonstrates the issue. Upon loading the file, if I select
_Column_0
as the time axis, which has identical values in rows 3 and 4, when I try to add e.g. column A to the plot area, only the first two values of A will be plotted.My actual use case is a dataset of densely sampled (1ms) data. Occasionally, I will have two data points with the same timestamp, which is not really an issue, however, it seems to prevent PlotJuggler from correctly plotting the data.
This is with the currrent master head.
The text was updated successfully, but these errors were encountered: