home.social

#rtistry — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #rtistry, aggregated by home.social.

fetched live
  1. A few updates to some of my older generative art pieces using the new {mypaintr} package

  2. A few updates to some of my older generative art pieces using the new {mypaintr} #RStats package

    #Rtistry #GenArtClub #GenerativeArt

  3. A little bit of generative art to end the week 🎨

    Made in with ggcube, a new package from Matthew Kling for making 3D charts in

  4. A little bit of generative art to end the week 🎨

    Made in #RStats with ggcube, a new package from Matthew Kling for making 3D charts in #ggplot2

    #Rtistry #GenerativeArt #GenArtClub

  5. A little bit of data art 🎨 Can you guess the data? 📊

  6. Generative calligraphy with random walks, smoothing splines and aesthetic mapping in R.

    See also: mastodon.social/@safest_intege

    ```
    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()
    ```

    #rstats #rtistry #generativeart #tidyverse #art

  7. Some generative art heavily inspired by this weekend's trip to the Designmuseum Denmark ✍️

  8. Some generative art heavily inspired by this weekend's trip to the Designmuseum Denmark ✍️

    #Rtistry #RStats #GenArtClub #GenerativeArt

  9. An alternative data art interpretation of the Dungeons & Dragons monsters data from !

  10. An alternative data art interpretation of the Dungeons & Dragons monsters data from #TidyTuesday!

    #RStats #Rtistry #DataViz #DataArt

  11. Some generative art playing with pastel shades 🎨

  12. ```
    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()
    ```

    en.wikipedia.org/wiki/Z-order_
    #rstats #generativeart #tilingtuesday #rtistry #fractal

  13. ```
    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()
    ```

    en.wikipedia.org/wiki/Z-order_
    #rstats #generativeart #tilingtuesday #rtistry #fractal

  14. Getting back into some generative art again with this rather spiky looking system 🎨

  15. Getting back into some generative art again with this rather spiky looking system 🎨

    #Rtistry #GenerativeArt #RStats #GenArtClub #ggplot2