In Python, using matplotlib, is there a way to change the distance of the dashes for different linestyles, for example, using the following command:
plt.plot(x,y,linestyle='--')
In Python, using matplotlib, is there a way to change the distance of the dashes for different linestyles, for example, using the following command:
plt.plot(x,y,linestyle='--')
You can directly specify the dashes length/space using the
dashes=(length, interval space)
argument inside the plot command.