-
Notifications
You must be signed in to change notification settings - Fork 67
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
Extend sequence class with time information #372
Comments
Have you started working on the issue? Because I would be interested in trying this one. |
Hi Andreas, Apologies for the delay in my response. No, I haven't started this implementation, feel free to work on it and create a PR :-) |
Thank you. Can you elaborate on the time information you talked about storing in start and end? Is it a certain period (ex. the first half) or a specific point in time? |
The start and end attributes should have Time as their type. This contains both the timestamp and period information. This is used to uniquely describe a point in time in the match. @dataclass
class Time:
period: Period
timestamp: timedelta |
Since in this file we're handling event instances, does the event class have any attribute related to time (both start and end)? |
The Sequences on the other hand, should have a start and end moment, where the
Does that answer your question? |
Yes I think you've pretty much covered what I wanted to clarify. Thank you very much. |
Hi again. I haven't managed to work out anything solid about this issue, so if you have any good ideas, you can take up this one. |
I would like to extend the Sequence class with start and end time information.
This way, we can easily retrieve for an event when the sequence it is part of started and ended, which is helpful for my analysis use case.
Thoughts?
The text was updated successfully, but these errors were encountered: