I'm using plotly to make a scatter polar plot in r to plot site aspect against wind speed.
Is there a way to change the axis so 0 degrees is still at the top, but 90 degrees is at the 3 o'clock position on the axis? and I'd also like to add the compass direction lables (N,E,S,W) to the plot
This is the code I've used and the plot I've made so far:
library(plotly)
plot_ly(type='scatterpolar',r=dat$y,theta=dat$x,mode='markers')
