I have drawn contour plot using plotly package in R. Additionally, I have used QUIVER function using pracma package to generate velocity vectors. Now I would like to overlay velocity vectors on top of the contour plot. How can I do that? Since I have not found any QUIVER function in r-plotly, so used another package.
plot_ly(x=x,y=y,z=z,type="contour") # contour plot using plotly package
quiver(x,y,u,v) # vector plot using pracma package
Now I would like to show both on the same plot.