Problem: percentTime and similar functions can use separateDays to get the error across repeats from files that are combined from movies collected over multiple repeats (days of experiments). separateDays groups traces by the identifier strings, which include the full path of the original movie file. It current uses the directory name to group files, under the assumption that one "repeat" may have many movies that go into it. A user has requested to have an option to do this over movies instead of "repeats".
Proposed Solution: there should be two options for functions like percentTime:
- stdev across days (groups traces by movie file directory in identifier strings)
- stdev across movies (groups traces by movie file name in identifier strings)
This can be an option in separateDays to just skip the step of stripping off the file name before grouping.
Problem:
percentTimeand similar functions can useseparateDaysto get the error across repeats from files that are combined from movies collected over multiple repeats (days of experiments).separateDaysgroups traces by the identifier strings, which include the full path of the original movie file. It current uses the directory name to group files, under the assumption that one "repeat" may have many movies that go into it. A user has requested to have an option to do this over movies instead of "repeats".Proposed Solution: there should be two options for functions like
percentTime:This can be an option in
separateDaysto just skip the step of stripping off the file name before grouping.