Efficient R

  Рет қаралды 5,176

Selina Baldauf

Selina Baldauf

Күн бұрын

Пікірлер: 41
@iyedghedamsi3016
@iyedghedamsi3016 8 ай бұрын
I didn't know about the collapse package, this is an amazing discovery ! Thank you for this content
@stephenchukwuemeka3229
@stephenchukwuemeka3229 3 күн бұрын
Thanks for this lecture. I start using the collapse package
@gabrielmurarideandrade5755
@gabrielmurarideandrade5755 4 ай бұрын
Special thanks from a brazilian economist! Learned a lot.
@ahmedmo8814
@ahmedmo8814 8 ай бұрын
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
@selinabaldauf7529
@selinabaldauf7529 8 ай бұрын
Thank you for your nice feedback 😊
@charleydublin7304
@charleydublin7304 7 ай бұрын
THANK YOU - one of the best videos I have had on R in some time
@aswanijehangeer
@aswanijehangeer 8 ай бұрын
Great Presentation, Selina. 👍
@retselisitsoemonyake7060
@retselisitsoemonyake7060 23 күн бұрын
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.
@sebymusundi4715
@sebymusundi4715 7 ай бұрын
Very informative on how to optimize R code
@Sergio-pq3ri
@Sergio-pq3ri 8 ай бұрын
Thanks Selina.
@mouradhamimed5432
@mouradhamimed5432 8 ай бұрын
Thanks a lot, great peace of knowledge
@henriquecoelhandrade
@henriquecoelhandrade 2 ай бұрын
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
@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
@osmanuamadu2084
@osmanuamadu2084 8 ай бұрын
Thanks from Ghana.
@user-sq9wp2ge4h
@user-sq9wp2ge4h 8 ай бұрын
Thanks from the Netherlands :)
@sebastianblandonlondono9734
@sebastianblandonlondono9734 5 ай бұрын
Great and useful video, thank you so much!
@pipertripp
@pipertripp 8 ай бұрын
This was great! Thanks Selina!!
@haimkichik
@haimkichik 6 ай бұрын
Amazing video. Thanks you, I will start learning from u.
@elcuartokage
@elcuartokage 8 ай бұрын
Great video 👏🏻👏🏻👏🏻👏🏻
@omarj236
@omarj236 8 ай бұрын
this realy helps me with my studies! Thank you Selina
@datahoffmann
@datahoffmann 8 ай бұрын
I loved this content
@user-sq9wp2ge4h
@user-sq9wp2ge4h 8 ай бұрын
If possible, could you share the link that you mention in the video concerning a course on parallelisation?
@selinabaldauf7529
@selinabaldauf7529 8 ай бұрын
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-sq9wp2ge4h
@user-sq9wp2ge4h 8 ай бұрын
@@selinabaldauf7529 thank you so much
@haraldurkarlsson1147
@haraldurkarlsson1147 2 ай бұрын
Very nice!
@caty863
@caty863 8 ай бұрын
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.
@xaviercasas100
@xaviercasas100 8 ай бұрын
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 :)
@selinabaldauf7529
@selinabaldauf7529 8 ай бұрын
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 :)
@krushnachChandra
@krushnachChandra 7 ай бұрын
You have new sub
@winspyre
@winspyre Ай бұрын
👍
@CanDoSo_org
@CanDoSo_org 9 ай бұрын
Thanks, when using collapse, "filter" is still "filter", not "ffilter", right?
@selinabaldauf7529
@selinabaldauf7529 9 ай бұрын
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_org
@CanDoSo_org 9 ай бұрын
Thanks.@@selinabaldauf7529
@generalyoutubewatching5286
@generalyoutubewatching5286 Ай бұрын
Efficient R is an oxymoron surely
@selinabaldauf7529
@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
@yildirimakbal6723
@yildirimakbal6723 6 ай бұрын
That means do not write in R.
@selinabaldauf7529
@selinabaldauf7529 6 ай бұрын
Well, I guess it depends on what you want to do 😊 but if speed is the priority, R might not be the right choice
@caty863
@caty863 8 ай бұрын
*sf::st_intersection(),* the epitome of least efficient code in the universe!
@selinabaldauf7529
@selinabaldauf7529 8 ай бұрын
Do you by any chance know a more efficient function that does the same thing?
@caty863
@caty863 8 ай бұрын
@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.
Tableau in R for $0 (Introducing GWalkR)
11:20
Business Science
Рет қаралды 6 М.
AI tools for scientific coding and data analysis (Github Copilot + R)
33:41
2 MAGIC SECRETS @denismagicshow @roman_magic
00:32
MasomkaMagic
Рет қаралды 29 МЛН
Motorbike Smashes Into Porsche! 😱
00:15
Caters Clips
Рет қаралды 20 МЛН
How to Become a Data Analyst in 2023 (Completely FREE!)
13:59
Alex The Analyst
Рет қаралды 1,2 МЛН
Effective digital notetaking with Obsidian
36:05
Selina Baldauf
Рет қаралды 21 М.
Using Obsidian for academic writing and creativity
42:45
Thinking in public
Рет қаралды 12 М.
The Only Unbreakable Law
53:25
Molly Rocket
Рет қаралды 335 М.
What's new in the tidyverse? by Professor Mine Çetinkaya-Rundel
1:03:55
Statistical Society of Australia
Рет қаралды 6 М.
data.table in R
24:03
Jonatan Lindh
Рет қаралды 17 М.
Tutorial on RTutor.ai: Chat with your data via AI
8:53
Steven Ge
Рет қаралды 10 М.
C Programming Tutorial for Beginners
3:46:13
freeCodeCamp.org
Рет қаралды 14 МЛН
Presentation-ready Summary Tables with {gtsummary}
52:18
Daniel Sjoberg
Рет қаралды 18 М.
2 MAGIC SECRETS @denismagicshow @roman_magic
00:32
MasomkaMagic
Рет қаралды 29 МЛН