Tootfinder

Opt-in global Mastodon full text search. Join the index!

@datascience@genomic.social
2024-05-25 10:00:01

Linear programs help to find optimal solutions based on a set of constrains. I used {ompr} before, but the new package {tidyLP} looks promising and integrates with the tidyverse. #rstats #linearprograms #optimization

@EgorKotov@datasci.social
2024-05-26 10:33:18

Cannot find any ready-to-use open source software (or even a combination of software) that would solve the travelling salesperson problem using public transit. Am I missing something? Any suggestions? #rstats #gtfs #urbanmobility

@datascience@genomic.social
2024-04-25 10:00:01

Are you making slides with Quarto or R Markdown and need a timer e.g. for breaks or group work? There is the {countdown} package for you: #rstats

@datascience@genomic.social
2024-05-24 10:00:01

Base pipe vs magrittr pipe: a thread by TimTeaFan: #rstats

@datascience@genomic.social
2024-05-26 10:00:01

I have a habbit of making (too) many (small) packages for functionality that might be reused in different context. {box} might be an alternative by making scripts into modlues that can be loaded: #RStats

@datascience@genomic.social
2024-04-26 10:00:01

GitHub Actions for the R language: Makes automatic testing of your R package much easier and making sure your package works on different OS and R versions is a matter of just a few lines of yaml: github.com/r-lib/actions

@sascha_wolfer@fediscience.org
2024-05-14 16:18:26

Simple #Rstats problem: Suppose you have a vector like this:
vec <- c('A/B', 'C/D', 'E/F')
For each element, you want the value after the '/', i.e. B, D, and F. How would you do it?
After years and years of using R, I just learned that you can do this:
sapply(strsplit(vec, '/'), '[', 2)
Did you KNOW this? The extraction operator '[' is given as a function to sapply() here and the 2 as an argument. 🤯
If you knew this: WHY DIDN’T YOU TELL ME?!?

@datascience@genomic.social
2024-05-23 10:00:01

The fastverse is a suite of complementary high-performance packages for statistical computing and data manipulation in R. #rstats

@datascience@genomic.social
2024-05-22 10:00:01

Customize what happens when you start R: #rstats #environment

@datascience@genomic.social
2024-05-18 10:00:01

Do you need inspiration how to present a dataset in a clear figure and what package to use? Check out #rstats

@datascience@genomic.social
2024-06-18 10:00:00

A pictures says more than 1000 words. How much more can an audio representation of your data tell you? #rstats <…

@EgorKotov@datasci.social
2024-05-31 14:12:09

🚀 Introducing rJavaEnv: A new R package to manage multiple Java JDKs for your R projects! 🎉
#rstats

@datascience@genomic.social
2024-06-17 10:00:01

The {esquisse} package makes it easy to plot your data in different ways with a drag and drop interface: #rstats

@datascience@genomic.social
2024-06-15 10:00:01

Use cookies in shiny apps: #rstats #shiny

@datascience@genomic.social
2024-05-15 10:00:01

quick and easy way to build a website for your r package: #rstats #package

@datascience@genomic.social
2024-06-14 10:00:01

Cute comics of R functions: #rstats

@datascience@genomic.social
2024-05-14 10:00:01

r-graph-gallery.com provides example code for a variety of chart types, both in base R and ggplot: #rstats

@datascience@genomic.social
2024-05-19 10:00:00

{ggchicklet}: library for rounded Segmented Column Charts: #ggplot #rstats

@datascience@genomic.social
2024-06-10 10:00:01

Use multi level models with {parsnip}: multilevelmod.tidymodels.org/ #rstats #ML

@datascience@genomic.social
2024-05-10 10:00:01

R doesnt need to be a hard and scientific tool 📈. You can use it to make art 🎨: #rstats

@datascience@genomic.social
2024-06-09 10:00:02

The inner working of parquette/arrow data in R: #rstats

@datascience@genomic.social
2024-05-09 10:00:01

Add highlighting to your quarto presentation using the RoughNotation library: #rstats

@datascience@genomic.social
2024-05-08 10:00:01

Yet another package to speed up different calculations in R: #rstats

@datascience@genomic.social
2024-06-08 10:00:02

{dtrack} makes documentation of data wrangling part of the analysis and creates pretty flow charts: #rstats

@datascience@genomic.social
2024-06-07 10:00:00

Make paint-by-number pictures in R: #rstats

@datascience@genomic.social
2024-05-07 10:00:01

Are you interested in how dependency-heavy your (or another) package is and why? #rstats

@datascience@genomic.social
2024-06-05 10:00:01

Handy RStudio addins for reshaping and navigating in code: #rstats #rstudio

@datascience@genomic.social
2024-05-04 10:00:01

Need some data to test a plot idea or algorithm? On #rstats #synthetic

@datascience@genomic.social
2024-06-04 10:00:01

Lets be honest, we spend too much time cleaning data. {janitor} can help with that: #rstats

@datascience@genomic.social
2024-06-02 10:00:01

Visualize dependencies between functions: #rstats

@datascience@genomic.social
2024-06-01 10:00:01

Make fancy tables: #rstats #tables

@datascience@genomic.social
2024-05-01 10:00:01

This looks helpful: #rstats #optimization

@datascience@genomic.social
2024-05-31 10:00:01

Add some swag to your ggplots, with fontawesome symbols and colors: #rstats

@datascience@genomic.social
2024-05-31 10:00:01

Add some swag to your ggplots, with fontawesome symbols and colors: #rstats

@datascience@genomic.social
2024-04-29 10:00:01

If you use Quarto to make presentations for a professional setting, it is important to choose the right theme, e.g. #rstats

@datascience@genomic.social
2024-05-30 10:00:01

R learning for applied statistics by Chenxin Li: #rstats

@datascience@genomic.social
2024-06-12 10:00:01

Its good to have many tests in your R package, but it can be a pain to debug some failing tests when it happens. {lazytest} for the rescue: only rerun the failing tests, until they pass: #RStats

@datascience@genomic.social
2024-04-28 10:00:01

TidyX: screencasts explaining different aspects of the R language and the coding process. #rstats

@datascience@genomic.social
2024-05-29 10:00:01

{purrr} has some lesser known functions that make handling of failing function calls easier: safely, quietly, possibly: #rstats

@datascience@genomic.social
2024-05-28 10:00:01

Interactive resizing of picture and table content in Rmd and Quarto: #rstats

@datascience@genomic.social
2024-05-27 10:00:01

The {conflicted} package makes sure that namespace conflicts are solved explicitly and prevents unpleasent surprises: #rstats

@datascience@genomic.social
2024-05-06 10:00:01

Using fonts in R graphics can be tricky at times. {showtext} aims to make it easier: #rstats

@datascience@genomic.social
2024-06-06 10:00:01

Friends Don't Let Friends Make Bad Graphs! Do you agree with the examples of bad graphs and the alternatives Chenxin Li (@chenxinli2.bsky.social) lists at github.com/cxli233/FriendsDont

@datascience@genomic.social
2024-06-03 10:00:01

If you set limits for a scale (e.g. x-axis) in ggplot, how would you like data outside of that range be handled? There is the oob parameter for that and a set of functions to use with it: scales.r-lib.org/reference/oob

@datascience@genomic.social
2024-05-03 10:00:01

Sometimes you get data in less than optimal format, e.g. as a png of a figure 😭... In that case cran.r-project.org/web/package might be the rescue.

@datascience@genomic.social
2024-05-02 10:00:01

Find the best contrast between one color and a list of options, e.g. for labels in geom_tile: {prismatic::best_contrast()} emilhvitfeldt.github.io/prisma