-
Notifications
You must be signed in to change notification settings - Fork 8
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
ticks and toposeries animations #298
Conversation
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
check colorbar of benchmarking topoplot |
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
src/plot_erpimage.jl
Outdated
ax.xticks = round.(LinRange(minimum(times.val), maximum(times.val), 5), digits = 2) | ||
ax.yticklabelsvisible = true | ||
|
||
clims = @lift (min($filtered_data...), max($filtered_data...)) # set limits for colorbar |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you should add a check here if the user wants to fix the colorrange in config.visual
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
implemented, but in config.colormap
Co-authored-by: Benedikt Ehinger <[email protected]>
Co-authored-by: Benedikt Ehinger <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
@lift (min($filtered_data...), max($filtered_data...)) | ||
) | ||
# Check if crange is an Observable, and extract its value if needed | ||
crange_value = isa(crange, Observable) ? crange[] : crange |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
crange_value = isa(crange, Observable) ? crange[] : crange | |
crange_value = to_value(crange) |
# Check if crange is an Observable, and extract its value if needed | ||
crange_value = isa(crange, Observable) ? crange[] : crange | ||
# Create the tick labels for the colorbar | ||
cb_ticks = LinRange(crange_value[1], crange_value[2], 5) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cb_ticks = LinRange(crange_value[1], crange_value[2], 5) | |
cb_ticks = @lift LinRange($crange1], $crange[2], 5) |
Added a page to the documentation about visualizing uncertainty in toposeries.
example_data
.Toposeries
Other
alpha
attribute in poly MakieOrg/Makie.jl#4614using Makie
in pcp.jl