home.social

#stringr — Public Fediverse posts

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

fetched live
  1. | Relationships – Remake | | Are we making more or fewer remakes as the years go by?. Built with using , , , and .

  2. | Distributions – FlowingData – ThemeDay | | Heat Spots in Central America 2020-2024, source: NASA Firms . Built with using , , , and scales.

  3. | Comparaciones – Slope | . Comportamiento de los focos de calor detectados para los paises de América Central. Creada usando R con , , , , y .

  4. | Comparación– Mosaico | . Focos de calor detectados para los paises de América Central. Un gráfico con valores absolutos y otro con valores relativos. Creada usando R con , , , , y .

  5. This is a noob's observation of R, Tidyverse and Stringr. But wow, why can some datasets open in notepad or Windows file preview or excel in 1 second but takes minutes or hours to show up in str_view_all?

    #R, #Tidyverse, #Stringr

  6. The {stringr} 📦 gets a function to convert a character vector into a single, comma-separated string *with custom wording before the last item.* (I've been using knits::combine_words() for that.)

    Example from the tidyverse blog post about stringr 1.5.0:

    str_flatten_comma(c("cats", "dogs", "mice"), last = ", and ")

    #> [1] "cats, dogs, and mice"

    tidyverse.org/blog/2022/12/str