I have an expression
((cos(-0.2 * pi)*(y-1) - (sin(-0.2 * pi)*x))) = 0.2 * (abs( sin((10*pi*(sin(-0.2 * pi) * (y - 1) + cos(-0.2 * pi) * x))^1)))^6
that I want to draw in a ggplot with geom_point plotted points.
The function will look similar to this image when plotted:
The problem with the function is probably the overlapping values. I have tried to solve it by using a contour plot as described in this question. This solution produced the following result:
However, this plot seems imprecise, so I would like to find a better solution for plotting this kind of function in R with ggplot.