Is there a pcolormesh equivalence in Plots? I need to plot data in the format
x1 y1 z1
x2 y2 z2
…
where the (x, y) grid is not a rectangle. So heatmap is not an option. Thank you!
Is there a pcolormesh equivalence in Plots? I need to plot data in the format
x1 y1 z1
x2 y2 z2
…
where the (x, y) grid is not a rectangle. So heatmap is not an option. Thank you!
If you want to do it with GMT.jl have a look at the examples in this issue’s discussion.
Thanks. That looks very nice!
Is that an option to plot it with scatter plot with appropriate marker size and shape, e.g
julia> using Plots
scatter(x, y, marker_z = z, marker = (:rect, 10), markerstrokewidth = 0.1, aspect_ratio = 1, label = false)
Thank you. That’s exactly what I was looking for.