▶️ Top 7 R packages that are less well known - kzbin.info/www/bejne/jF6opKaGp6yDfsk 🎉 *Subscribe* if you want more videos like this! - kzbin.info/door/b5aI-GwJm3ZxlwtCsLu78Q 😃 *Comment* below to share which tricks you liked the most!!
@s-sugoi8356 ай бұрын
Thanks, I work in a bank we migrated from SAS to R. This is so helpful.
@tjaeg2 жыл бұрын
Please keep on doing these kind of videos!
@spikeydude1142 жыл бұрын
Great video! Very dense with information and straight to the point!
@DM-py7pj4 жыл бұрын
2:06 what purpose does ungroup() serve in this case?
@tomhenry-datasciencewithr60474 жыл бұрын
Technically it's not necessary! But I have gotten into the habit of 'ungroup()'ing every time after a group_by() because in other contexts - e.g. when the pipe continues with further mutates, summarizes, etc. - forgetting to ungroup() can result in the wrong outcomes. That's because summarize() by default only peels off the last variable in the group_by(). So I have developed the habit of always ungroup()ing after a group_by(), even when it's not necessary!
@DM-py7pj4 жыл бұрын
@@tomhenry-datasciencewithr6047 Thanks. Great explanations. Subscribed. :-)
@djangoworldwide79252 жыл бұрын
Super informative and advanced! Thank you. It's hard to find these days advanced tutorials on youtube
@dataslice4 жыл бұрын
Great tips, Tom! I'm definitely saving this video!
@tomhenry-datasciencewithr60474 жыл бұрын
Awesome! Thank you!
@bridgettsmith72062 жыл бұрын
Great tips. I appreciate that you have an index of time stamps for the content. I will be more easily able to reference this video later.
@ZuluMonk4 жыл бұрын
Great tips! Always nice to see better ways of doing things.
@tomhenry-datasciencewithr60474 жыл бұрын
Glad you enjoyed it!
@aliramadan74254 жыл бұрын
Thank you. Learned so much!
@tomhenry-datasciencewithr60474 жыл бұрын
Glad it was helpful!
@Wherearethewildthings4 жыл бұрын
Fantastic, Tom! Just subscribed, so helpful
@tomhenry-datasciencewithr60474 жыл бұрын
Glad you found it helpful!
3 жыл бұрын
This is great, so useful. Thanks!
@manohar-kg4 жыл бұрын
Very helpful video... Thanks
@tomhenry-datasciencewithr60474 жыл бұрын
Most welcome :)
@MarcelloNesca4 жыл бұрын
Great tips! Always looking for new ways of coding for datasets. Subscribed!
@tomhenry-datasciencewithr60474 жыл бұрын
More to come!
@nuk3man3 жыл бұрын
Great video. Question; in tip nr. 9, what does "\\.?$" do in the first str_replace_all?
@tomhenry-datasciencewithr60473 жыл бұрын
Good question! It's a regular expression, and its purpose is to remove an optional '.' at the end of the string of text. For example, ' INC.' or ' CO.' or ' INC' or ' CO' would all be matched and replaced with the empty string (i.e. removed from the text). So 'QUANTAS CO.' (hypothetical) and 'QUANTAS CO' would both become 'QUANTAS' We can break down the "\\.?$" like this: \\. translates into \. - this says to match an actual '.' character. If we didn't have the '\\', it would match _any_ character because '.' is the regular expression code for any character. ? means 'optional' - so the actual '.' may or may not be present - if it is present, it will be matched. $ means the 'end of the string of text'. So putting it together, this means: 'Replace ' ' # a space followed by 'INC' or 'CO' # (INC|CO) followed by an optional '.' # \\.? if all at the end of the string # $ with the empty string # "" ' More info on regular expressions here: r4ds.had.co.nz/strings.html#matching-patterns-with-regular-expressions
@tpflowspecialist3 жыл бұрын
Fantastic tydiverse data processing tips. Thank you!
@ecarlosbc3 жыл бұрын
Great tutorial Sir.!!!!!!!
@timmytesla96552 жыл бұрын
This is awesome. Thank you!
@shreyaroraa22343 жыл бұрын
Very Nice video TOM. Future video idea - Moving from Sql to R common issues and functions comparisons
@QuentinAndres063 жыл бұрын
Tom, you are a boss.
@patricklogan60892 жыл бұрын
Good stuff
@ahmed007Jaber3 жыл бұрын
wow! mate love this one. keep it up for tip #18 how would you exclude some columns from this? i actually need to do a similar function to this
@djangoworldwide79252 жыл бұрын
Just pick other columns
@clono19844 жыл бұрын
Hi Tom, do you have the script available for download anywhere? Would love to revisit a few of the tips here. Really like your work. Thanks for sharing! -- Juan
@tomhenry-datasciencewithr60474 жыл бұрын
Sure! I've put a link at the end of the description. Here it is: gist.github.com/larsentom/727da01476ad1fe5c066a53cc784417b
@clono19844 жыл бұрын
@@tomhenry-datasciencewithr6047 ahh! can't believe I missed it. Thank you Tom.
@tomhenry-datasciencewithr60474 жыл бұрын
@@clono1984 Glad you liked the tips! Let me know if you have others to share too!
@melissawong41252 жыл бұрын
Thanks. Great tips! The github link is no longer working. Is there a new link?
@alihashemian2252 жыл бұрын
I am having trouble accessing the script. Can someone help me?
@heartheart55433 жыл бұрын
link for the code cannot be accesed: 404
@jaritos6754 жыл бұрын
light RStudio theme not acceptable
@tomhenry-datasciencewithr60474 жыл бұрын
Haha! What's your favorite RStudio theme?
@jaritos6754 жыл бұрын
@@tomhenry-datasciencewithr6047 cobalt
@tomhenry-datasciencewithr60474 жыл бұрын
Nice -- Cobalt is probably my favorite RStudio theme too!
@SuperKrazy20004 жыл бұрын
Team Light Theme!
@AkashMathur-yc9nu4 жыл бұрын
Power Pack !
@educationulx3 жыл бұрын
My data(csv) is about historial heights between both genders of different ages . Here , my data contains heights of every years (1986-2019) & Age group > 2 , 8 , 16 , 19 , 22 . Also Male , Female sex . But I just want to select / work with only age 19 (gender male/both) to see their heights between 1986-2019 . How can I do it ? plz let me know .
@tomhenry-datasciencewithr60473 жыл бұрын
You can work with something like this: heights %>% filter(year %>% between(1986, 2019)) %>% # year >= 1986, year = 1986 & year % # change to just 'age_group == 19' or 'age_group %in% c(19)' if you want ggplot(aes(year, height, color = sex)) + geom_line() + facet_wrap(~age_group, ncol = 1) this assumes your data looks like this: year | age_group | sex | height 2015 | 16 | Female | 150 etc
@tomhenry-datasciencewithr60473 жыл бұрын
Then try removing / changing parts of this to see the effects!
@nkuatedivinely73693 жыл бұрын
I just started watching some few videos for school purposes, they are great, but u are so fast😅, it will be a great thing if u could speak a little slowly and even repeat some few things, thanks