#rtistry — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #rtistry, aggregated by home.social.
-
Another new generative art system built in #RStats 🎨
-
Another new generative art system built in #RStats 🎨
-
Randomly generated generative art 🎨
-
Randomly generated generative art 🎨
-
A few updates to some of my older generative art pieces using the new {mypaintr} #RStats package
-
A few updates to some of my older generative art pieces using the new {mypaintr} #RStats package
-
-
Some more recent generative art made with #RStats 🎨
-
Some more recent generative art made with #RStats 🎨
-
-
-
-
Little bit of grid-based generative art 🎨
-
Little bit of grid-based generative art 🎨
-
-
-
Generative calligraphy with random walks, smoothing splines and aesthetic mapping in R.
See also: https://mastodon.social/@safest_integer/114329996541737881
```
library(tidyverse)
n = 20
x = cumsum(rnorm(n))
y = runif(n)
xx = predict(smooth.spline(x, spar=.005), seq(1, n, .01))$y
yy = predict(smooth.spline(y, spar=.005), seq(1, n, .01))$y
ggplot(tibble(x=xx,y=yy)) +
geom_path(aes(x=x, y=y, lwd=-c(0,diff(y))), show.legend=FALSE) +
theme_void()
``` -
From code to canvas 🎨
-
From code to canvas 🎨
-
Weekend #Rtistry 🎨
-
Some generative art heavily inspired by this weekend's trip to the Designmuseum Denmark ✍️
-
Some generative art heavily inspired by this weekend's trip to the Designmuseum Denmark ✍️
-
An alternative data art interpretation of the Dungeons & Dragons monsters data from #TidyTuesday!
-
An alternative data art interpretation of the Dungeons & Dragons monsters data from #TidyTuesday!
-
Some generative art playing with pastel shades 🎨
-
Some generative art playing with pastel shades 🎨
-
"Generative Metropolis"
Adapted from https://github.com/paulvanderlaken/generative-art
See also https://marcusvolz.com/#generative-city
Full R code in thread 👇
-
"Generative Metropolis"
Adapted from https://github.com/paulvanderlaken/generative-art
See also https://marcusvolz.com/#generative-city
Full R code in thread 👇
-
```
library(tidyverse)
z = function(n) {
bb = function(i) {
x = y = 0
for (k in 0:(n - 1)) {
x = x + ((floor(i/2^(2 * k))) %% 2) * 2^k
y = y + ((floor(i/2^(2 * k + 1))) %% 2) * 2^k
}
c(x, y)
}
as.data.frame(t(sapply(0:(4^n - 1), bb)))
}
ggplot(z(6)) +
geom_path(aes(x=V1, y=V2, col=sin(V1/4)+cos(V2/4)), show.legend=F) +
scale_colour_gradient(low='orange', high='blue') +
theme_void()
```https://en.wikipedia.org/wiki/Z-order_curve
#rstats #generativeart #tilingtuesday #rtistry #fractal -
```
library(tidyverse)
z = function(n) {
bb = function(i) {
x = y = 0
for (k in 0:(n - 1)) {
x = x + ((floor(i/2^(2 * k))) %% 2) * 2^k
y = y + ((floor(i/2^(2 * k + 1))) %% 2) * 2^k
}
c(x, y)
}
as.data.frame(t(sapply(0:(4^n - 1), bb)))
}
ggplot(z(6)) +
geom_path(aes(x=V1, y=V2, col=sin(V1/4)+cos(V2/4)), show.legend=F) +
scale_colour_gradient(low='orange', high='blue') +
theme_void()
```https://en.wikipedia.org/wiki/Z-order_curve
#rstats #generativeart #tilingtuesday #rtistry #fractal -
Getting back into some generative art again with this rather spiky looking system 🎨
-
Getting back into some generative art again with this rather spiky looking system 🎨