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

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

villares,
@villares@ciberlandia.pt avatar

@FelipeSMBarros fiquei na dúvida, mais burocracia no R ou no Python?

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 !

gaborcsardi,
@gaborcsardi@fosstodon.org avatar

@cedricr If you do 1) do you know what's the best way to tell which packages succeeded to install, and which failed?

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 for 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.

ramikrispin,
@ramikrispin@mstdn.social avatar

(2/2) Here are some of the topics the book covers:
✅ Read and write Excel files with R and Python
✅ Excel automation with R and Python scripts
✅ Data visualization with ggplot2 and Matplotlib in Excel
✅ Time series analysis and forecasting
✅ Regression analysis
✅ Embading R/Python applications and functions in Excel

If you are working with Excel users or you are using Excel and want to extend your capabilities, I recommend checking this book.

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

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

krz,
@krz@mastodon.social avatar

@hrbrmstr no, I haven’t heard of this bug or vulnerability before, and the r blog is not very informative either

hrbrmstr,
@hrbrmstr@mastodon.social avatar
bentoh, to vscode
@bentoh@mastodon.online avatar

So over the past year I have been using #vscode for my #rstats and #python 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 #RStudio (despite lack of #vim mode) and #PyCharm 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?

jimgar,
@jimgar@hachyderm.io avatar

@bentoh What is your current setup like?

jimgar,
@jimgar@hachyderm.io avatar

@bentoh For R I wrote a guide for macOS users, but most of it applies to Windows too from what I can tell. It’ll probably be obvious which bits - where you set the paths in the settings json and stuff like that. I hope you find it helpful :)

https://jimgar.github.io/posts/vs-code-macos-r/post.html

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

#APackageADay
#OSS
#RStats
@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! #RStats #tidymodels

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!

#R

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

  • All
  • Subscribed
  • Moderated
  • Favorites
  • normalnudes
  • hgfsjryuu7
  • magazineikmin
  • thenastyranch
  • Youngstown
  • slotface
  • everett
  • ngwrru68w68
  • mdbf
  • kavyap
  • tsrsr
  • Durango
  • PowerRangers
  • DreamBathrooms
  • Leos
  • InstantRegret
  • khanakhh
  • osvaldo12
  • vwfavf
  • tacticalgear
  • rosin
  • cubers
  • cisconetworking
  • GTA5RPClips
  • ethstaker
  • tester
  • modclub
  • anitta
  • All magazines