Lorenzo Gaborini

@lgaborini.bsky.social

Lausanne based 🇨🇭 - Senior Data Analyst @IntTestAgency - PhD Forensic Science @unil - MSc Mathematical Engineering @polimi ®🐍🏃‍♀️⛷🚲🥐🍽

On the verge of madness to understand why emojis were not showing up in plots in a {pagedown} report (custom format), in a {targets} pipeline launched via a Shiny app, in a Docker container (SVG/PNG devices). 3 weeks later: found out that Ubuntu has poor support for Noto Color Emoji. #rstats

More than 10 years of R, and this still caught me off guard... #rstats vec <- c("foo", "bar") list_vec <- list() for (i in vec) { list_vec[[i]] <- \() paste("vec is:", i) } list_vec[[1]]() # "vec is: bar" list_vec[[2]]() # "vec is: bar"