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
Band does not support linestyle, so this plot is wrong in a confusing way:
Band
linestyle
( so.Plot(fmri, "timepoint", "signal", color="region", linestyle="event") .add(so.Line(), so.Agg()) .add(so.Band(), so.Est()) )
One needs to do this:
( so.Plot(fmri, "timepoint", "signal", color="region", linestyle="event") .add(so.Line(), so.Agg()) .add(so.Band(), so.Est(), group="event") )
Perhaps the stat grouping should use any variables defined at the common level or in that layer, not just those the mark accepts?
This will have some implications as we address #2911
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Band
does not supportlinestyle
, so this plot is wrong in a confusing way:One needs to do this:
Perhaps the stat grouping should use any variables defined at the common level or in that layer, not just those the mark accepts?
This will have some implications as we address #2911
The text was updated successfully, but these errors were encountered: