Skip to content

Instantly share code, notes, and snippets.

@mxblsdl
Created May 26, 2020 22:39
Show Gist options
  • Save mxblsdl/0719c37b7ba1cac112aeadeb3d7f41e1 to your computer and use it in GitHub Desktop.
Save mxblsdl/0719c37b7ba1cac112aeadeb3d7f41e1 to your computer and use it in GitHub Desktop.
fun render
library(tidyverse)
seq(-2, 2, by = 0.01) %>%
expand.grid(x = ., y = .) %>%
ggplot(aes(x = (1 - x - sin(y^2)),
y = (1 + y - cos(x^2)))) +
geom_point(alpha = 0.05,
shape = 20,
size = 0) +
theme_void() +
coord_polar()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment