Mid terms are November 3rd 2026. Go register voters.
@usrbinr.bsky.social
880 followers 1.2K following 1.5K posts
I love posting about #rstats, texas politics, and power markets.
Posts Media Videos Starter Packs
usrbinr.bsky.social
I'm not sure its a golden bullet. I've been bitten by joins many times. In general, suggest you always do some hard validation check of rows / expected outcomes after doing joins.
usrbinr.bsky.social
are you using dplyr join verbs? if yes then they do a good job of letting you know if you one many-to-many errors etc.

another option is to use tidylog's join verbs, it will print a summary of the joins for you

Thanks to @cghlewis.bsky.social for reminding me
usrbinr.bsky.social
what do you mean by diagnose? eg how many rows match in y vs x or if there are duplicates, etc?
usrbinr.bsky.social
Has anyone had success using pkgdown with @quarto.org instead of rmarkdown?

#rstats
usrbinr.bsky.social
Coding at a desk with a proper ergonomic set up > coding from the couch while binging netflix
usrbinr.bsky.social
if i give it a template examples of the sections i want filled out, format, etc -- it does an okay job
usrbinr.bsky.social
i do like AI for generating roxygen tags for my functions, it can do that fairly well and thoroughly
usrbinr.bsky.social
ohh!! that fixed it!

old_hook <- fansi::set_knit_hooks(knitr::knit_hooks, which = c("output", "warning", "error", "message"))
options(crayon.enabled = TRUE)
usrbinr.bsky.social
when printing a command line prints with {cli} in @quarto.org, the color format washes away -- does anyone know how to keep it?

eg. this is what prints in my terminal -- but this is what shows up in my quarto document

#rstats
usrbinr.bsky.social
these were not ICE agents and was not related to immigration. Let's not spread fake news please.
Reposted by Mid terms are November 3rd 2026. Go register voters.
propublica.org
We’ve reported extensively on how the FDA allowed foreign drugmakers to send generic medications to the U.S. from factories with filthy labs and contaminated equipment.

This month, we’re digging deeper and could use your help. THREAD/
usrbinr.bsky.social
I need a fresh change. I’m still vegan but moving away from identifying as one. Too toxic of a community
usrbinr.bsky.social
If you use full_join() to bring together two datasets and then plan to compare numeric columns between two datasets, make sure to use replace_na() to replace missing values with zero otherwise you will miss where there are blanks.

#rstats