You can find materials supporting this vid (and others) at github.com/equitable-equations/youtube.
@ndowidar Жыл бұрын
Thank you so much for teaching this lesson!
@CanDoSo_org2 жыл бұрын
Cool, very useful command! Thank you so much!
@andresmeneses66012 жыл бұрын
What an amazing channel. Thank you for your help!
@EquitableEquations2 жыл бұрын
Thanks! Glad it's been helpful.
@haraldurkarlsson11478 ай бұрын
separate has been replaced with separate_wider_(delim, position or regex). It is a great function.
@Gisele633 Жыл бұрын
Wonderfully thaks!!!
@oscarrosalescorzo2 жыл бұрын
Thanks for the video
@romanvasiura6705 Жыл бұрын
Thank you!
@mugomuiruri2313 Жыл бұрын
Wonderful
@Plantss2 жыл бұрын
Thank you for a wonderful tutorial! I'm working with large dataset, and I can see the results I'm looking for in the console by doing head() but its not applying to my actual dataset when i do View(). Im not sure what im doing wrong here. Any advice?
@EquitableEquations2 жыл бұрын
Hmm, you should see similar things with head and View, assuming you pass them each the same data set. My guess is that your inputs aren't exactly the same. Good luck!
@toluojutiku95852 жыл бұрын
Hello, Thank you for the video, this was very explanatory. But what do we do if we want to split the observations in Multiple columns in our dataset into multiple columns, what do we do? I tried the separate function, but this didn't work
@EquitableEquations2 жыл бұрын
Hi! The separate() command specifically targets a single column, probably because a lot could go wrong if you were to split multiple columns at once. While you could iterate the process, I'd be nervous about doing so.
@MorrisMcK2 жыл бұрын
Professor. It is a great content. I have a large dataset of tick level data. So, each day i have thousands of transactions. Is it possible to split daily transactions data into three buckets- namely low, medium, and large transactions. Say there are 30k transactions. I want first 10k as low, the middle 10k as medium, and the rest as large? Thank You.
@EquitableEquations2 жыл бұрын
Hi! Either cut() or one of the slice_*() functions should do the job. I have a vid on the latter: kzbin.info/www/bejne/bZPUpaCDm6maY5Y
@mohammadzarifwahidy90202 жыл бұрын
what if a column contains a vector, instead of Johny Smith you have c(Johny, Smith) and instead of Mary Smith you have c(Mary, Smith). How do you separate them? thanks
@EquitableEquations2 жыл бұрын
Hi! The hoist() command is probably what you're looking for.
@어쩔티비-k3w2 жыл бұрын
I have some question . This is my code and I think I did same as you, but it doesnt work. separate(Graduation_1, col = date, into = c("year", "month", "day")) Error code : Must extract column with a single valid subscript. x Subscript `var` has the wrong type `function`. i It must be numeric or character. Run `rlang::last_error()` to see where the error occurred.
@EquitableEquations2 жыл бұрын
Hi! For specific questions like this, I recommend the R4DS learning community. www.rfordatasci.com/
@jamesleleji69842 жыл бұрын
how do you separate the values of a column where no delimiter is given?
@EquitableEquations2 жыл бұрын
There has to be some sort of delimiter in order for this task to make sense, right? Either in the data or user-specified.
@jamesleleji69842 жыл бұрын
@@EquitableEquations Thanks, I've figured it out. I used, sep = 1 to split the values of a column sexage into 2 new columns sex and age..
@tmitra0014 ай бұрын
hi it is not saving in smits data after you split! right?