esther, to random

Looking for psychologists on here, both researching and practicing, especially queer, disabled and BIPOC psychologists.

I’m starting out as a psychology student and would love to follow more people in the field.

Anyone around?
(boosts welcome)

yrlaNor,

@esther
i'm a psychologist, programming a lot, main interest in readability research.

sharoz, to random

Helped someone debug some tidyverse data processing issues. It turns out "NA" was a legitimate code used in their data and readr by default interprets it as NA, not a string. Careful folks!

Edit: for anyone who doesn't know, read_csv() has an na parameter. The default is na = c("", "NA"). Setting it to na = "" fixed the issue.

datamaps,

@sharoz @odr_k4tana

like most human skilled activities, both should be done by people who are knowledgeable (often not the same person), whatever tool they use.
But some tool are usually better than other.
After 30+ years in the profession, I can tell you that using a programming language like provides at least a much better and reproducible workflow than any other C&P tool that you can think of, and if you think otherwise it's only because you're like a stakeholder in SAS 😉

datamaps,

@sharoz @odr_k4tana

In any case there is a famous GUI for that keeps it very similar to SPSS https://cran.r-project.org/web/packages/Rcmdr/index.html

and it's just one out of many, here's a list
https://r4stats.com/articles/software-reviews/r-gui-comparison/

datamaps,

@odr_k4tana @sharoz
in some ways the raise of the sect has funnelled as side effect a general less knowledge of When I see people call readr::read_rds instead of readRDS I just despair

mccarthymg, to random
@mccarthymg@fosstodon.org avatar

New blog post looking at package contributor statistics on GitHub: https://tidytales.ca/posts/2023-05-10_r-developers-github/

This time I try to answer questions like:

  • How many packages are hosted on GitHub?
  • How many people have contributed to them?
  • What does the network of people with common package contributions look like?
  • And much more!

There are also interactive {gt} tables so you can browse contribution and package statistics; and I’ve shared the data so you can explore your own questions. Enjoy!

mccarthymg,
@mccarthymg@fosstodon.org avatar

This is a follow-up to my post two weeks ago looking at package developer statistics on CRAN: https://fosstodon.org/@mccarthymg/110306605466215008

eliocamp, to programming
@eliocamp@mastodon.social avatar

People joke about making a cup of coffee when installing from source but, have you ever tried to install anything using conda?

eliocamp,
@eliocamp@mastodon.social avatar

On a totally unrelated note, I still don't understand who is out there using reticulate frictionlessly. Every single time I try to set anything up I get errors upon errors.

zeileis, to random

New working paper with Paul Murrell.

Overview and advice for new color palette functions palette.colors() and hcl.colors() in base since version 4.0.0.

Short blog post:

https://www.zeileis.org/news/coloring/

smach, to rstats
@smach@fosstodon.org avatar

“Introduction to Quarto for R Users” - @NHSrCommunity presentation by Filippo Cavallari, data science lecturer with the UK Office for National Statistics.
Video: https://youtu.be/8nPfCUKPnBE
Slides: https://filebb.github.io/Intro_Quarto/#/title-slide
#rstats #QuartoPub #Quarto @rstats

djnavarro, to random

A couple of blog posts on pharmacokinetic models that I hadn't gotten around to sharing before:

https://blog.djnavarro.net/non-compartmental-analysis/

https://blog.djnavarro.net/stan-ode/

The first one talks about non-compartmental analysis and has some very simple R code, the second one dives a little deeper and talks about compartmental models - which often require you to use an ODE solver in the model - in Stan and R.

I'm still learning pharmacokinetics so they're a little rough around the edges

RConsortium, to random
@RConsortium@fosstodon.org avatar

Maëlle Salmon, Software Engineer, part-time with rOpenSci, shares about the online book, HTTP Testing in R, co-authored with Scott Chamberlain. The HTTP book is a central place reference for developers of R packages accessing web resources. ➡️ https://www.r-consortium.org/blog/2023/05/15/better-understanding-your-tools-choices-online-book-http-testing-r

dickoa, to random

package {crul} 1.4 is on CRAN. It comes with many new features, I'm really excited about retry on Async requests. Thanks again @sckottie for the all the work on this package.

mjskay, to random
meghansharris, to random

The goal was to learn about applying splines to a circle for the polygon chapter, but splines are too hard for my brain right now, so this resulted instead. Forever searching for less computationally heavy ways to make space 🌃 in w/ geom_polygon() & geom_point()

debruine, to random

I'd totally forgotten about this quirk of functions: arguments are not evaulated until they are used, so if argument b defaults to the value of argument a, you need to use argument b in the code before you make any changes to a (or of course don't change a)

((I spent half an hour debugging something due to this today))

x <- function(a, b = a) {
a = 1
return(b) # first use of b sets the value b = a = 1
}

x(2) # returns 1

y <- function(a, b = a) {
b # sets the value of b = a = 2
a = 1
return(b)
}

y(2) # returns 2

josiah, to rust

Rust curious? 🦀
:rstat: user?
A cursory introduction to {extendr} for making rust based :rstat: packages!
Make super fast R packages using Rust ⚡️

https://www.youtube.com/watch?v=tRm-Qq2_Ap0

djnavarro, to random

good morning

seanfobbe, to opensource German
nicolarighetti, to communicationscholars

“It’s a bit like seeing a rabbit shape in the clouds and then testing whether all clouds look like rabbits… using the same cloud. I hope you appreciate that you’re going to need some new clouds to test your theory.

Any datapoint you use to inspire a theory or question can’t be used to test that same theory.”

https://towardsdatascience.com/the-most-powerful-idea-in-data-science-78b9cd451e72

@sociology @communicationscholars @rstats

nrennie, to random
@nrennie@fosstodon.org avatar

I'm very excited to be presenting at R/Medicine this year! 🎉🎉🎉

I'll be talking about using {tsfeatures} and {tidymodels} to fit ML models to time series data in order to detect heart murmurs💡

Register: https://events.linuxfoundation.org/r-medicine/register/

meghansharris, to random

Things I do while waiting for huge SAS files to process for work 😴 AKA: "What is this sorcery I've managed to conjure up with geom_segment() 😭?"

A textured circle with a filled with a pattern of rainbow-colored lines on a black background.

ingorohlfing, to rstats German
@ingorohlfing@mastodon.social avatar

When you struggle with theme()-arguments in {ggplot2}, you may like {ggeasy}, offering shortcuts to plot customization https://github.com/jonocarroll/ggeasy (worth visiting just bc of the hilarious cartoon)
I am skeptical when a package promises to make plotting easier because you have to remember the arguments you are looking for in either case. Here, however, I can see the added value for some arguments @rstats

terence, to random
@terence@fosstodon.org avatar

Trying something different. Again. A map of Japan's shinkansen network as of 2015. If you know an updated source, please let me know. Like the Interstate 5 map, the camera angle and hovering lines may give the impression that they are off; they are not. 😅

adventures, an tale

thoughtfulnz, to random
@thoughtfulnz@mastodon.nz avatar

I asked Bard how to read in a .mseed file into

If the seismology package existed and worked in this way I would be interested. But in terms of getting up and running with this specialist binary file, I would have been better (had I not known my options before hand) to use a more traditional source that restricted itself to indexing websites rather than making up convincingly communicated answers.

juliasilge, to programming
@juliasilge@fosstodon.org avatar

I'm excited to be teaching a workshop at on how to deploy and maintain models with vetiver! 🏺

@isabelizimm will be joining me, and you can "choose your own adventure" with either or . Registration is at https://pos.it/conf

https://youtu.be/jwbmxVuo63M

seanfobbe, to politicalscience German

🔔 NEU 🔔 Wie kann ich als Jurist:in in Legal Data Science einsteigen? Ich habe dafür eine Materialsammlung erstellt - jetzt online!

Materialsammlung: https://seanfobbe.com/de/einstieg-legal-data-science/

✅ Kurzer Überblick
✅ Artikel zur Einführung
✅ Podcast-Episoden
✅ Einführungen und Nachschlagewerke zum Programmieren
✅ Links zu freien juristischen Datensätzen

@rstats @politicalscience @OpenScienceFeed @OpenScienceDeutschland

  • All
  • Subscribed
  • Moderated
  • Favorites
  • megavids
  • khanakhh
  • mdbf
  • ethstaker
  • magazineikmin
  • GTA5RPClips
  • rosin
  • thenastyranch
  • Youngstown
  • InstantRegret
  • slotface
  • osvaldo12
  • kavyap
  • DreamBathrooms
  • JUstTest
  • Durango
  • everett
  • cisconetworking
  • normalnudes
  • tester
  • ngwrru68w68
  • cubers
  • modclub
  • tacticalgear
  • provamag3
  • Leos
  • anitta
  • lostlight
  • All magazines