I didn't know about the collapse package, this is an amazing discovery ! Thank you for this content
@stephenchukwuemeka32293 күн бұрын
Thanks for this lecture. I start using the collapse package
@gabrielmurarideandrade57554 ай бұрын
Special thanks from a brazilian economist! Learned a lot.
@ahmedmo88148 ай бұрын
Thanks for such an amazing KZbin video. I am a PhD student and this will help me optimize my codes and safe some parts of my memory for other uses. Big love
@selinabaldauf75298 ай бұрын
Thank you for your nice feedback 😊
@charleydublin73047 ай бұрын
THANK YOU - one of the best videos I have had on R in some time
@aswanijehangeer8 ай бұрын
Great Presentation, Selina. 👍
@retselisitsoemonyake706023 күн бұрын
Thank you so much for such an informative video.
4 ай бұрын
Great video. I didn't know a lot of the packages, thanks for the clear explanations.
@sebymusundi47157 ай бұрын
Very informative on how to optimize R code
@Sergio-pq3ri8 ай бұрын
Thanks Selina.
@mouradhamimed54328 ай бұрын
Thanks a lot, great peace of knowledge
@henriquecoelhandrade2 ай бұрын
Amazing video! I work as an econometrician and your presentation gives me a lot of ideas 😊 Could you share your presentation as a pdf file?
@selinabaldauf7529Ай бұрын
Thanks for your nice feedback, good to hear that you got ideas from it! A bit clunky, but you can download the presentation pdf from the depths of my Github project: github.com/selinaZitrone/tools_and_tips/blob/main/docs/slides/2023_11_16_efficient_r.pdf
@osmanuamadu20848 ай бұрын
Thanks from Ghana.
@user-sq9wp2ge4h8 ай бұрын
Thanks from the Netherlands :)
@sebastianblandonlondono97345 ай бұрын
Great and useful video, thank you so much!
@pipertripp8 ай бұрын
This was great! Thanks Selina!!
@haimkichik6 ай бұрын
Amazing video. Thanks you, I will start learning from u.
@elcuartokage8 ай бұрын
Great video 👏🏻👏🏻👏🏻👏🏻
@omarj2368 ай бұрын
this realy helps me with my studies! Thank you Selina
@datahoffmann8 ай бұрын
I loved this content
@user-sq9wp2ge4h8 ай бұрын
If possible, could you share the link that you mention in the video concerning a course on parallelisation?
@selinabaldauf75298 ай бұрын
Sure. You might consider starting with these two ressources: - Tutorial on the futureverse: henrikbengtsson.github.io/future-tutorial-user2022/index.html - Documentation website of the futureverse with link to further tutorials etc: www.futureverse.org/ Happy Coding :)
@user-sq9wp2ge4h8 ай бұрын
@@selinabaldauf7529 thank you so much
@haraldurkarlsson11472 ай бұрын
Very nice!
@caty8638 ай бұрын
By far, my efficiency hurdles with R are in terms of memory usage. I don't really understand why R needs to load all the dataset into memory before working with it. I am sure the clever guys at Posit could address this issue if they chose to.
@xaviercasas1008 ай бұрын
Hi i create parameterized report for about 30 staff using for loop i think using apply function would be faster thanks for the video 👍. Are you on linked in :)
@selinabaldauf75298 ай бұрын
Hope you managed to make your loop faster. If in doubt, use profiling to see where your bottleneck is. Oh, and I am not on LinkedIn :)
@krushnachChandra7 ай бұрын
You have new sub
@winspyreАй бұрын
👍
@CanDoSo_org9 ай бұрын
Thanks, when using collapse, "filter" is still "filter", not "ffilter", right?
@selinabaldauf75299 ай бұрын
You are welcome :) Actually, the collapse package does not have a function called "filter". To have a fast filter for rows in a table, you can use the function "fsubset". It works similar to the "subset" function in base R, just faster. On the package homepage, you can also find a nice cheat sheet with a list of all collapse functions for different purposes: sebkrantz.github.io/collapse/
@CanDoSo_org9 ай бұрын
Thanks.@@selinabaldauf7529
@generalyoutubewatching5286Ай бұрын
Efficient R is an oxymoron surely
@selinabaldauf7529Ай бұрын
@@generalyoutubewatching5286 Yes this argument can be made for sure 😃. Maybe it's more about "efficient enough R" or "more efficient R". But for sure R should not be used if efficiency is the main requirement for a project 😉 But at least in my field (biological science) it's efficient enough for most tasks
@yildirimakbal67236 ай бұрын
That means do not write in R.
@selinabaldauf75296 ай бұрын
Well, I guess it depends on what you want to do 😊 but if speed is the priority, R might not be the right choice
@caty8638 ай бұрын
*sf::st_intersection(),* the epitome of least efficient code in the universe!
@selinabaldauf75298 ай бұрын
Do you by any chance know a more efficient function that does the same thing?
@caty8638 ай бұрын
@baldauf7529not in R. But performing the same operation in GUI-based packages like QGIS is lightning fast compared to this function. I haven't managed to know why this is so slow at this level.