home.social

#rtistry — Public Fediverse posts

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

  1. Choosing pixels from a sorted or unsorted copy of a flowfield image depending on the hue of the original image. Anything from blue-green to purple-red gets copied, otherwise we see a sorted version.

    #mathart #rtistry #genuary2025

  2. Experimenting with crossview (aka side-by-side stereoscopy).

    Just cross your eyes halfway between the pictures until both images overlap one another. Then focus on the central image.

    #rstats #Rtistry #GenerativeArt #crossview

  3. #intro

    I am part of the Great #MastodonMigration from that other site.

    I teach and do research at #McMaster University's School of Earth, Environment and Society. My areas of interest are #transportation, #accessibility, #ActiveTravel, #equity, and #policy. I have a strong interest in methods, and my longest love affair has been with #SpatialStatistics and #SpatialDataAnalysis.

    I am interested in #writing, and use #Rstats with gusto, professionally and for #Rtistry and #GenerativeArt.

  4. New maths/art blog post! Partly with the goal of demonstrating how awesome #webR is.

    I describe making carpet patterns like the image attached, with all of the code running in the browser so you can generate random outputs, change parameters etc.

    georgemsavva.github.io/creativ

    Even runs perfectly well on my crappy phone! It's going to be interesting to see how this alters stats education, reporting etc.

    #mathart #rtistry #rstats #generative #creativecoding

  5. Checking in at 4,000 color fills. Still not really recognizable as the source image. My computer's fan is protesting, but why doesn't it like coloring?

    #MastoArt #generativeArt #rtistry #cartoonArt #penAndInk #squiggle #doodle #doodleDrawing

  6. For comparison, not yet looking close to the reference image after 1,000 color fills. Going to let the for loop run on this one for a while and see what happens.

    I like these as alternative non-square pixels

    #MastoArt #generativeArt #rtistry #cartoonArt #penAndInk #squiggle #doodle #doodleDrawing

  7. The coloring algorithm is very slow and needs some wiggling. Half-starts still fun to look at.

    Issues: shouldn't be filling black, need to fix that.

    #MastoArt #generativeArt #rtistry #cartoonArt #penAndInk #squiggle #doodle #doodleDrawing

  8. Good scribble sunday morning to y'all.

    This was made by resampling a drawing lots of times and putting the samples in similar spots to where they would have gone.

    Today's goal is to alter the random coloring algorithm to color by reference image instead.

    #MastoArt #generativeArt #rtistry #cartoonArt #penAndInk #squiggle #doodle #doodleDrawing

  9. #intro

    I am part of the Great #MastodonMigration from that other site.

    I teach and do research at #McMaster University's School of Earth, Environment and Society. My areas of interest are #transportation, #accessibility, #ActiveTravel, #equity, and #policy. I have a strong interest in methods, and my longest love affair has been with #SpatialStatistics and #SpatialDataAnalysis.

    I am interested in #writing, and use #Rstats with gusto, professionally and for #Rtistry and #GenerativeArt.

  10. #intro

    I am part of the Great #MastodonMigration from that other site.

    I teach and do research at #McMaster University's School of Earth, Environment and Society. My areas of interest are #transportation, #accessibility, #ActiveTravel, #equity, and #policy. I have a strong interest in methods, and my longest love affair has been with #SpatialStatistics and #SpatialDataAnalysis.

    I am interested in #writing, and use #Rstats with gusto, professionally and for #Rtistry and #GenerativeArt.

  11. #intro

    I am part of the Great #MastodonMigration from that other site.

    I teach and do research at #McMaster University's School of Earth, Environment and Society. My areas of interest are #transportation, #accessibility, #ActiveTravel, #equity, and #policy. I have a strong interest in methods, and my longest love affair has been with #SpatialStatistics and #SpatialDataAnalysis.

    I am interested in #writing, and use #Rstats with gusto, professionally and for #Rtistry and #GenerativeArt.

  12. #intro

    I am part of the Great #MastodonMigration from that other site.

    I teach and do research at #McMaster University's School of Earth, Environment and Society. My areas of interest are #transportation, #accessibility, #ActiveTravel, #equity, and #policy. I have a strong interest in methods, and my longest love affair has been with #SpatialStatistics and #SpatialDataAnalysis.

    I am interested in #writing, and use #Rstats with gusto, professionally and for #Rtistry and #GenerativeArt.

  13. Generative art based on the Aizawa attractor.
    Drawn with #rstats using my own packages.

    #creativecoding #rtistry

  14. A Clifford attractor collapsing almost to a single point and growing back again.
    More like a breathing structure than the usual high-density mathart.

    #generativeart #mathart #creativecoding #rtistry #rstats

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

  16. 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

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

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

  19. Here's an animation I created using my experimental #rstats package {skiagd}.

    From a technical standpoint, this kind of "incremental drawing with blending" isn't currently feasible with R's standard graphics devices. 🧐 So for visual styles involving light accumulation or glow, {skiagd} might be one of the more capable approaches within R.
    #rtistry

  20. Some generative art playing with pastel shades 🎨

  21. Wrapped up the video I worked on over the weekend 🎥💜
    Looks like a swarm of something dancing in violet fluid — what does it look like to you?
    Used SkSL shaders for a custom VHS-style effect, plus noise-driven motion and bouncing logic in R. #rstats #rtistry #creativecoding

    youtube.com/watch?v=CSHlUZxwuQ

  22. ```
    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