Kenneth Lyons

Results 28 issues of Kenneth Lyons

Here's a pass through the current state of the documentation to identify what needs to be replaced/removed/added. ## Index Page I just recently moved most of this stuff to the...

docs

It would be good to have the ability to just write a function that takes in configured storage, processes some input data, and writes out some new data. In implementing...

enhancement
design

h5py raises an exception if an Array is created, never stacked on or initialized, and the Trial is written. Should probably catch and reraise with a more direct message. Also...

enhancement

There's no way to check if the base `Task` consumes the key press event for moving to the next block, so you can't have a task with, say, a single...

enhancement
design

Allowing you to add trial attrs at any time can result in some difficult-to-debug issues.

enhancement

I think this is the only place an iterator is used. Just wrap it with `list()` I guess: https://github.com/axopy/axopy/blob/4ef815d2ea273d6a5a163c92b33234bfca82df83/axopy/storage.py#L260 Better still would be to add some error checking, inspect the...

maintenance

It's pretty common to iterate over subjects in post-experiment analysis and that's kind of clunky at the moment: ```python storage = Storage('data') for subj in storage.subject_ids: storage.subject_id = subj reader...

enhancement

For example, a pipeline contains a scikit-learn `StandardScaler`. The task making use of the pipeline needs to use data from a previous task to fit the `StandardScaler`. In order to...