I want to plot the function $\sin(x)$ versus $x$. The problem is that I want to scale $x$ based on radian angles (like $\pi/6, \pi/3, \ldots$).
But as we see in the image below, it's not based on pi-type angles. How can I do that?
Plot[Sin[x], {x, 0, 2 Pi}, Frame -> True]


Table[z, {z, 0, 2 Pi, Pi/6}]withRange[0, 2 Pi, Pi/6]– Bob Hanlon Jul 15 '23 at 16:56