Thank the gods for this man. After hours of searching and trial and error, I finally found a youtube channel worth a damn. Thank you for making my life a little easier..
@mashfintech2 жыл бұрын
Nice and simple. Gives a lot of clarity.
@tahadinc13025 жыл бұрын
I really like the way you explained the concept, thank you for the great video
@krakenworks77025 жыл бұрын
To the point and a clear explanation. Thank you.
@ZomnY4494 жыл бұрын
what does the tilde stand for in the manual function of the map?
@larissacury77142 жыл бұрын
thank you very much! What does the ~ stand for before the . ?
@vrajtalati5300 Жыл бұрын
how did you just kept the console and script in dark mode and everything else in light mode?
@oriolverdenyvilalta853 жыл бұрын
Perfectly explained
@n00dle253 жыл бұрын
Thank you! Very good video and explanation.
@riverland00725 жыл бұрын
nice...which keyboard do you use please...I like the sound
@DividedStates7 жыл бұрын
Q: You have a tibble a1 and you write a1 * 2, it returns you are base R data.frame instead of a tibble. Why is that?
@DimitrisPatikas4 жыл бұрын
nice. is there any difference from the build-in lapply() or sapply() commands?
@TrentTube4 жыл бұрын
The nomenclature of base R isn't consistent with the tidyverse. Also, map functions are more feature-rich than the base R alternatives.
@c0f2a6 жыл бұрын
Why we need to use map function from another package? I found lapply/sapply/mapply in the base R makes perfect sense to me.
@TrentTube4 жыл бұрын
The nomenclature of base R isn't consistent with the tidyverse. Also, map functions are more feature-rich than the base R alternatives.
@MannISNOR5 жыл бұрын
Thank you Ben!
@brendenmorley26437 жыл бұрын
Thank you. Great instruction
@harrisonooi2963 жыл бұрын
good video, but i needed something more complex lmao ! but thank you :D
@marlonfermat81156 жыл бұрын
nice video, Also , it is not clear why not use apply, lapply ...etc
@DividedStates7 жыл бұрын
Ok, let's talk about real world problems again. I mean, you seldom have a table with some easy numbers and maybe you maybe want to do more than multipling with 2. Let's say: You have a chromatography system which gives you .tsv or .csv files of a specific format. So, you want to transform a number of complex list elements in the same way. Could you make a list of data.frames (e.g. the files saved in the output folder of that instrument) pipe this list of data.frames into map? What if you want to do more then just one operation/function? How would you address specific elements of the data.frames, when piped?
@TrentTube4 жыл бұрын
Nest and unnest can help separate out different elements of a list of dataframes, in the process of applying mapping functions to them. The .tsv vs .csv are usually handled with readr. See the following cheatsheet for help on more complicated, layered mapping: github.com/rstudio/cheatsheets/blob/master/purrr.pdf