We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Computing event properties is currently only implemented as a Dataset method
Dataset
If we are working just with a single GazeDataFrame and not with Dataset then we would need an equivalent GazeDataFrame.compute_event_properties().
GazeDataFrame.compute_event_properties()
Reuse the code from compute_event_properties.
Then refactor the original code in Dataset to call the new GazeDataFrame.compute_event_properties().
Dataset.compute_event_properties()
gaze = pm.gaze.from_csv('file.csv') gaze.pix2deg() gaze.pos2vel() gaze.detect_events('ivt') gaze.compute_event_properties(['amplitude', 'dispersion'])
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description of the problem
Computing event properties is currently only implemented as a
Dataset
methodIf we are working just with a single GazeDataFrame and not with Dataset then we would need an equivalent
GazeDataFrame.compute_event_properties()
.Description of a solution
Reuse the code from compute_event_properties.
Then refactor the original code in Dataset to call the new
GazeDataFrame.compute_event_properties()
.Minimum acceptance criteria
GazeDataFrame.compute_event_properties()
GazeDataFrame.compute_event_properties()
inDataset.compute_event_properties()
Sample Code
The text was updated successfully, but these errors were encountered: