stevensanderson, to programming
@stevensanderson@mstdn.social avatar

Discover essential techniques to check for column existence in R data frames!

Use %in% with names() or colnames(), explore dynamic checks with exists() and within(), or identify patterns with grepl(). Experiment with these methods in your projects.

Post: https://www.spsanderson.com/steveondata/posts/2024-05-13/

#R

image/png

R_Foundation, to random
@R_Foundation@fosstodon.org avatar

New #rstats blog entry. Our statement on vulnerability report CVE-2024-27322. https://blog.r-project.org/2024/05/10/statement-on-cve-2024-27322/index.html

rOpenSci, to rstats Spanish
@rOpenSci@hachyderm.io avatar

📦 [A package a day - Computing Infrastructure 41]

Today's Computing Infrastructure package is skimr

Compact and Flexible Summaries of Data
🙏 Maintained by @elinwaring
📝 https://docs.ropensci.org/skimr/

Check out this article: {Skimr} defaults
💻 https://docs.ropensci.org/skimr/articles/Skimr_defaults.html




@rstats

almenal99, to random
@almenal99@fosstodon.org avatar

hey @coolbutuseless @mattdray

what's your take on pipe-at-the-end vs pipe-at-the-beginning?

(others, feel free to chime in)

#rstats

FelipeSMBarros, to random Spanish
@FelipeSMBarros@mastodon.social avatar

Muito tempo sem usar ... desaprendi tudo e fiquei mal acostumando com python. Quanta burocracia para fazer coisas simples. credo... que delicia :) hahaha

eddelbuettel, to ubuntu
@eddelbuettel@mastodon.social avatar

Happy to share that now provides 24.04, 3.19, and of course 4.4.0.

20.7k CRAN packages, and 400+ BioConductor packages as apt binaries with fast and full resolution of all dependencies.

: Fast. Easy. Reliable. Pick All Three.

https://eddelbuettel.github.io/r2u/

eitsupi, to random Japanese
@eitsupi@fosstodon.org avatar

I created a new Dev Container Feature to install packages from a DESCRIPTION file.
I think it would be a suitable Dev Container Feature for R package development.
https://github.com/rocker-org/devcontainer-features/tree/main/src/r-dependent-packages

cedricr, to random
@cedricr@mapstodon.space avatar

PSA for #RStats users: consider adding sth like
1 options(Ncpus = parallel::detectCores() - 2) and

2 Sys.setenv(MAKEFLAGS = paste0("-j", max(parallel::detectCores() - 2, 1))) in your .Rprofile.

1 will make packages install in //, 2 will make builds from source parallelized.

On a 32 cores box, building @tylermorganwall rayshader (many dependencies):
none: 718s
2: 327s
1+2 : 138s

duckdb (no dep):
none: 989s
2: 112s

Prepare for some fan noise though !

brodriguesco, to random
@brodriguesco@fosstodon.org avatar

on May 16, 2024, from 4:00 pm - 6:00 pm CEST I'm giving a 2 hour online workshop on reproducibility with #Nix for #RStats users organized by the DIPF (Leibniz Institute for Research and Information in Education)

Register here: https://www.leibniz-openscience.de/event/los-workshop-reproducible-research-with-nix-and-rix/

ramikrispin, to Excel
@ramikrispin@mstdn.social avatar

(1/2) I have been following the work of @stevensanderson and David Kum for a few years now, and I am excited to see the release of their new book 🥳- Extending Excel with Python and R 🚀.

The book focuses on the common conjunction and collaboration between data scientists and Excel users. This includes scaling and automating tasks with and and core data science applications such as data wrangling, working with APIs, data visualization, and modeling.

devSJR, to random
@devSJR@fosstodon.org avatar

Does anybody know at least one agency of the French administration which uses ?

hrbrmstr, to random
@hrbrmstr@mastodon.social avatar

R Core has an official statement out on the inappropriately assigned CVE-2024-27322 #RStats

https://blog.r-project.org/2024/05/10/statement-on-cve-2024-27322/

bentoh, to vscode
@bentoh@mastodon.online avatar

So over the past year I have been using for my and work. my workplace is trying to move to a unified IDE, and vscode allows remote access and WSL integration for free. However, so far it fails to spark joy in me like (despite lack of mode) and do. Everything feels clunky, and subpar. The "intelligent" and linting things are also quite broken in R... Has there been extensions that fundamentally change the vscode experience that I should be trying?

terence, to random
@terence@fosstodon.org avatar

Getting ready for summer with a spinning render of Enoshima. 🏖️ Data from OpenStreetMap contributors. Tried hard to find lidar data but failed.

#rayshader adventures, an #rstats tale

video/mp4

rOpenSci, to rstats Spanish
@rOpenSci@hachyderm.io avatar

rOpenSci is proud to welcome a new package to our software suite!🎉

dendroNetwork: Create Networks of Dendrochronological Series using Pairwise Similarity by @RonaldVisser
Docs: https://docs.ropensci.org/dendroNetwork
Peer review: https://github.com/ropensci/software-review/issues/627
🙏 Thank you to reviewers @kaija_bean and Zach Gajewski!


@rstats

rOpenSci, to rstats Spanish
@rOpenSci@hachyderm.io avatar

📦 [A package a day - Computing Infrastructure 40]

Today's Computing Infrastructure package is gitcellar

Helps Download Archives of GitHub Repositories
🙏 Maintained by @maelle
📝 https://docs.ropensci.org/gitcellar/

Check out this example from @grusonh: Backing up GitHub organisation with {gitcellar}
💻 https://discuss.ropensci.org/t/backing-up-github-organisation-with-gitcellar/3153




@rstats

Posit, to random
@Posit@fosstodon.org avatar

It's a good weekend to learn survival analysis with tidymodels! ⏳

The tidymodels team wrote up a few case studies for you:

• Using survival analysis to see how long it takes the Department of Buildings in NYC to disposition complaints: https://www.tidymodels.org/learn/statistics/survival-case-study/
• Computing time-dependent measures of performance: https://www.tidymodels.org/learn/statistics/survival-metrics/

Read the announcement on survival analysis in tidymodels: https://www.tidyverse.org/blog/2024/04/tidymodels-survival-analysis/

Happy learning!

stevensanderson, to programming
@stevensanderson@mstdn.social avatar

🔍 Quick Guide: Detecting Strings in R

In my latest blog post, I cover how to find specific strings in data columns using the str_detect function from the stringr package and base R functions. You'll see practical examples with both grepl for identifying matches and gregexpr for counting occurrences.

Read more here: https://www.spsanderson.com/steveondata/posts/2024-05-10/ and explore ways to make string detection a breeze in your data work!

#RStats #DataCleaning #R #RProgramming #Programming #Data #Regex

image/png

terence, to random
@terence@fosstodon.org avatar

Coastal bathymetric contours (left) and topobathymetric contours (right) of the Philippines.

#rayshader adventures, an #rstats tale

A visualisation of the topobathy contours of the Philippines

steveroyle, to random
@steveroyle@biologists.social avatar

It seems I have found a new way to procrastinate on a grant application. Using #Rstats to make my Gantt chart!

FelipeSMBarros, to markdown Spanish
@FelipeSMBarros@mastodon.social avatar

Estou há muito tempo sem usar o #rstats. Eis que surge uma demanda e ao começar a preparar o ambiente de trabalho me lembro que um dia cheguei a preparar um material muito bacana sobre produção de artigos com #rstat
e #markdown ... o Famosos #RMarkdown...
Quem quiser conferir: https://felipesbarros.github.io/Dominando_RMarkdown/

rOpenSci, to rstats Spanish
@rOpenSci@hachyderm.io avatar

📦 [A package a day - Computing Infrastructure 39]

Today's Computing Infrastructure package is ruODK

An R Client for the ODK Central API
🙏 Maintained by Florian W. Mayer
📝 https://docs.ropensci.org/ruODK/

Check out this article: Comparison of related software packages
💻 https://docs.ropensci.org/ruODK/articles/comparison.html




@rstats

terence, to random
@terence@fosstodon.org avatar

Coastal bathymetric contours (left) and topobathymetric contours (right) of Japan. Couldn't decide which one I like better so here's both.

#rayshader adventures, an #rstats tale

A visualisation of the topobathy contours of Japan

quantixed, to random
@quantixed@fosstodon.org avatar

is remotes::install_github() currently not working?
Getting HTTP error 401. Bad credentials.
Sys.getenv("GITHUB_PAT”) is empty and anyway, I’m just trying to install from a public repo.
Using R 4.4.0 & remotes_2.5.0 on macOS

terence, to random
@terence@fosstodon.org avatar

Bathymetry of the Seto Inland Sea revisited.

#rayshader adventures, an #rstats tale

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