RoedigerRG, to random

News!

biopixR, has reached version 1.0.0! From its humble beginnings to the latest updates, we've worked tirelessly to bring you powerful tools for image analysis and processing.

Improved examples
New functions: importImage and scanDir
Automated parameter calculation in objectDetection
Faster computation through vectorization

Browse through our journey: from edge detection to automated calculations, parallel processing, and more!

https://cran.r-project.org/package=biopixR

#biopixR #rstats #imageanalysis

Logo of the #biopixR package

yabellini, to random Spanish
@yabellini@fosstodon.org avatar
hrbrmstr, (edited ) to random
@hrbrmstr@mastodon.social avatar

In last Thursday's Drop, I mentioned Perplexity's new "Pages” and showed an example for Maine.

Here's a super alpha thing to make a "backup" of those pplx pages.

It saves off the raw JSON and a basic markdown of the page.

Code: https://codeberg.org/hrbrmstr/pplx-pages-backup

Example markdown: https://codeberg.org/hrbrmstr/pplx-pages-backup/src/branch/batman/Maine-Is-The-wKU9FnKPRvyowkZMEo9Lbw.md

lulu_powerful, to neovim
@lulu_powerful@fosstodon.org avatar

I've added the R.nvim plugin to #Neovim. It splits the window into panels for editing, viewing output and browsing objects, and it offers everything I'd expect in an R IDE.

It hardly needs any configuration besides registering its own existence. It's comprehensive, thoughtful and underrated, and it's my preferred way to write R code.

#RStats

Drmowinckels, to startup
@Drmowinckels@fosstodon.org avatar

📝 New blog post 📝

'Customise your R startup message'

🧌 We all know the R startup message. It tells us the version of R we are running, the date, the platform we are running on, and some informative tips on using R. When you've been using R a while, though, it get old. Let me show you how you can customise your startup message! ---

👀 Read more at https://drmowinckels.io/blog/2024/rproject

#rstats #startup #pride

grrrck, to python
@grrrck@fosstodon.org avatar

I made a little TikTok about my all-time favorite new #Shiny feature: dark mode! ☀️🌙

This one is for Shiny for #Python, but the #RStats version will be dropping soon so follow the @Posit channel to make sure you catch it!
https://www.tiktok.com/t/ZTL7qM1SK/

nrennie, to random
@nrennie@fosstodon.org avatar

📢New blog post 📢

A short blog post about how I've been using Quarto to create two versions of R tutorial worksheets: one with questions, one with answers!

Two tricks:
🪄 parameterised documents
🪄 conditional content

Blog post: https://nrennie.rbind.io/blog/r-tutorial-worksheets-quarto/

#RStats #QuartoPub #StatsEd

stevensanderson, to datascience
@stevensanderson@mstdn.social avatar

🚀 TidyDensity's New AIC Functions! 🚀

The TidyDensity package now includes new functions to calculate the Akaike Information Criterion (AIC) for various distributions, streamlining model quality assessment. Use functions like util_negative_binomial_aic() to automate AIC calculations, ensuring precise model evaluation.

Happy coding!

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

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

📦 [A package a day - Data Extraction 2]

Today's Data Extraction package is datefixR

Standardize Dates in Different Formats or with Missing Data
🙏 Maintained by @IBDNathan
📝 https://docs.ropensci.org/datefixR/

Do you use this package? Tell us about it!
🗺️ https://discuss.ropensci.org/c/usecases/10

#PeerReviewed

#APackageADay
#OSS
#RStats
@rstats

coolbutuseless, to random
@coolbutuseless@fosstodon.org avatar

{nara} update. A pkg for handling nativeRaster images.

  • New demo sprite.
  • Updated hex logo

All rendering done in R with {grid} and {nara}

https://github.com/coolbutuseless/nara

Animated pixel deer running across the screen
Hexagonal logo with the word "nara". Inside the hexagon is an animated pixel deer

rmflight, to random
@rmflight@mastodon.social avatar

I wasn't sure if this little trick to change the figure captions in an #RStats #QuartoPub document would work, but it worked perfectly.

I get several figures, with their caption changed to reflect what was actually plotted.

Very nice.

#| label: fig-each  
#| fig-cap: !expr glue::glue('Number of things in {multi}.')  
#| fig-keep: all  
purrr::walk(multi, \(in_item){  
 tmp = big_df |>  
 dplyr::filter(value %in% in_item)  
 print(ggplot(tmp, aes()) + geom_point())  
})  
thomas_mock, to random
@thomas_mock@fosstodon.org avatar

Posit provides patched binaries for versions 4.0.0 and above.

"A recent security vulnerability in the R language has been patched in Posit’s Linux binaries for installing R versions 4.0.0 and above."

https://posit.co/blog/posit-patched-binaries-for-r-versions-4-0-0/

layal, to random
@layal@fosstodon.org avatar

#rstats Do you know what the difference is between nested and packed data? And what does this difference look like in a JSON format? If you're curious about that, please check my last blog post out: https://rdiscovery.netlify.app/posts/2024-05-30_pack-nest/. Cheers😉

sebkrantz, to datascience
@sebkrantz@fosstodon.org avatar

In the development version of {collapse} [v2.0.15, available via install.packages("collapse", repos = "https://fastverse.r-universe.dev")], the pivot() function has received a FUN argument to support aggregation, including a number or hard-coded internal functions that do this "on the fly". Initial benchmarks show that this significantly outperforms other pivot table options in R. More at https://sebkrantz.github.io/collapse/reference/pivot.html (feel free to test and give feedback). #rcollapse #rstats #DataScience

ergative, to Julia
@ergative@wandering.shop avatar

I find it WILDLY FRUSTRATING implementing contrast coding in Julia.

If I use ContrastCoding(), I can specify my own contrast matrices (yay!) but I can't label them. So the regression output just reuses my actual factor levels to label an actual model term that means something like, say, 'mean of levels A and B vs. mean of levels C and D'. Or whatever. To interpret my model, I must make physical notes on a piece of paper about what each term means.

1/2

#psycholinguistics #julia #rstats

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

📦 [A package a day - Data Extraction 1]

Today's Data Extraction package is readODS

The only goal of readODS is to enable R to read and write OpenDocument Spreadsheet (ODS) files
🙏 Maintained by @chainsawriot
📝 https://docs.ropensci.org/readODS/

Check out this article: An Overview of {readODS}
📊 https://docs.ropensci.org/readODS/articles/overview.html

#PeerReviewed

#APackageADay
#OSS
#RStats
@rstats

RConsortium, to HR
@RConsortium@fosstodon.org avatar

🐘✨ Great news from Marcela Victoria Soto at R4HR in Buenos Aires! She recently shared updates about their dynamic activities: "Data analysis is crucial for agile decision-making in companies." Join them on June 1, 2024, for the "Data Visualization in HR" event. Perfect for Spanish-speaking R users interested in HR analytics. 📅👥 Read more: https://www.r-consortium.org/blog/2024/05/30/r4hr-in-buenos-aires-leveraging-r-for-dynamic-hr-solutions

mich_waveform, to Philippines
@mich_waveform@mastodon.social avatar

How do I find people (especially women and POC and LGBTQ+) who started as scientists and somehow found their way to programming and love it so much but were never formally trained and so they just figure it out as they go but they make it work anyway?? Too specific?? (I’m a half woman and ally, let’s be pals?)

stevensanderson, (edited ) to datascience
@stevensanderson@mstdn.social avatar

I'm thrilled to announce some fantastic new features and improvements in the latest update of the TidyDensity package! 📈

What's New?
39 New functions for estimating parameters, calculating distribution statistics and AIC

Minor Improvements

  • Optimized Parameter Estimation
  • Improved Data Handling

📰 News: https://lnkd.in/ea7mX_Xg

coolbutuseless, to random
@coolbutuseless@fosstodon.org avatar

{nara} pkg for working with native rasters in R

Work-in-progress: experimenting with isometric tiles

Fun!

https://github.com/coolbutuseless/nara

coolbutuseless, to random
@coolbutuseless@fosstodon.org avatar

Which one of you crazy kids built a sprite editor in the Rstudio viewer?

Possible back in times of tw*tter...

#RStats

coolbutuseless,
@coolbutuseless@fosstodon.org avatar

It was @mattdray who built {pixeltrix} - a sprite editor for R

https://github.com/matt-dray/pixeltrix

#RStats

unicornCoder, to datascience
@unicornCoder@fosstodon.org avatar

some #rstats #DataScience plotting of Canadian #cannabis sales by cannabis type

seems like Canadian 🍁 love the dried flower

plot 2: Canadian sales of cannabis by cannabis type for year 2022/2023, with dried cannabis having sales of $3,026,970

pyOpenSci, to opensource
@pyOpenSci@fosstodon.org avatar

rstats 🤝 python

rdata, a package from Carlos Ramos Carreño, is a pure Python implementation that offers a lightweight way to import R datasets/objects stored in the “.rda” and “.rds” formats into Python!

📄 Check it out: https://rdata.readthedocs.io/en/latest/

#OpenSource #OpenScience #rstats #Python #pyOpenSci

juliasilge, to random
@juliasilge@fosstodon.org avatar

Join the SLC RUG one week from today to hear from @thomas_mock about bringing generative AI to the RStudio IDE! :rstats:

https://www.meetup.com/slc-rug/events/300636186/

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