I am trying to make a quiver plot using Plots. Unfortunatley, the heads of the arrows keeps being way to large for the plot to be usable. I have been trying various arguments to change this, but nothing seems to help.
Here is with open arrows heads:
Plots.quiver(arrow_x_vals, arrow_y_vals; quiver=(arrow_dxs,arrow_dys), markersize=0.1, line_z=arrow_cs, lw=0.5, size=(700,400))
here is with closed ones
Plots.quiver(arrow_x_vals, arrow_y_vals; quiver=(arrow_dxs,arrow_dys), markersize=0.1, arrow=Plots.arrow(:closed, :head, 0.01, 0.01), line_z=arrow_cs, lw=0.5, size=(700,400))
I have tried changing the size pf the plot plane (size
), the line width, the markersize, the input to arrow
. Nothing seems to change and the arrow heads keeps being large blobs.