Pierre-Yves de Müllenheim

@pydemullenheim.com

Assistant Professor (Angers, France). Skeet wearable device-based methods, sports sciences, statistics, and programming stuff. Author and maintainer of the {activAnalyzer} R package.

Important news from our host, COS. Starting in November SocArXiv users will no longer be able to create new OSF Projects. You will need to host research materials in another repository, such as Zenodo, and link out to them. Existing public projects will be preserved. Preprints service will continue.

Center for Open Science@cos.io · last mo.

COS is announcing important changes to the Open Science Framework (OSF). OSF Projects—used for project collaboration, file mgmt, & storage—is being phased out as an active workspace over the next 6 months. This change does not affect persistence & accessibility of existing public projects. (🧵1/2)

I'm excited to announce that the @sortee.bsky.social Guidelines for Data and Code Quality Control in Ecology and Evolutionary Biology are now published in Peer Community Journal peercommunityjournal.org/articles/10....

The SORTEE guidelines for data and code quality control in ecology and evolutionary biology

peercommunityjournal.org

Joel Pick@joelpick.bsky.social · last yr.

🚨Introducing the @sortee.bsky.social Guidelines for Data and Code Quality Control in Ecology and Evolutionary Biology🚨 doi.org/10.32942/X24... Increasingly E&E journals are recruiting data editors. We provide standardised guidelines for journals with data editors and those wanting to recruit them 🧵

If you currently do not have a reproducible workflow where you can share data and code where possible, I expect you will soon not be able to publish in good journals. Beyond being best practice, journals will use this to identify papers written by AI. Plan a new project accordingly.

PLOS@plos.org · 6mo ago

@plosbiology.org is formalizing its long‑standing practice of asking authors to share research code, introducing a mandatory #code‑sharing policy and clarifying what is meant by code sharing. Learn more and find guidance on best practice: plos.io/4reyX3v

It can be so frustrating to read STS research. Here are Bartscherer and Reinhart osf.io/rbyt6_v1/ Look at their flawed logic: Replication is *used as a career strategy*. The evidence? People were not known for earlier research. The clear confound? ECR’s drove the replication movement! 1/x

Bild

In all my years using #RStats, I’ve seen this kind of posts often. I think that R has evolved past the "traditional" way of using it which was installing it system-wide, and then installing packages system-wide. That worked, because there were less packages, but also because the kind of projects 1/3

Tanya Shapiro@tanyashapiro.bsky.social · 2y ago

*gets package errors because R version is too old* *installs latest version of R* *gets shinyapps errors because R version is too new* 🙃🙃🙃

How to move more and reduce sedentary behavior in daily life? 💡 Since September, during my teleworking days, I’ve covered 720 km (the equivalent of over 17 marathons), taken 1.2 million steps, and burned 50,000 Kcal — all during my working hours!

Bild

#rstat note to myself: If you want to convert a factor variable that contains numbers between quotes (eg, "1", "3", etc) to a numeric variable while keeping the original numbers: DO: as.numeric(as.character(my_var)) NOT DO: as.numeric(my_var) The 2nd option returns variable level numbers!