This comes from an outer level. THis is great. Thanks!!!
@yuzaR-Data-Science Жыл бұрын
You're very welcome! I later actually produced a separate video for every test ggstatslot does. For example, you can check out t-test, or kruskal-wallis, or chi-square, or correlation ... any common statistical test.
@WilOspinoC Жыл бұрын
@@yuzaR-Data-Science I am going to check them. Now I am really digesting the statistical information.
@Bader-gs4ig4 ай бұрын
very very informative. thanks mate
@yuzaR-Data-Science4 ай бұрын
Glad you enjoyed it, thanks for watching mate!
@chacmool2581 Жыл бұрын
Awesome stuff. As always. I want a vid from you on ElasticNet and how it can supplant Ridge/Lasso.
@yuzaR-Data-Science Жыл бұрын
Great suggestion! The machine learning stuff is coming anyway. But it'll take some time. I just need to cover some basic .... and get more time from my day job. Year, similar to the tests, I wanna cover every useful model. Ideally :)
@chacmool2581 Жыл бұрын
@@yuzaR-Data-Science MARS is interesting too. Does feature selection/reduction and is kinda interpretable.
@yuzaR-Data-Science Жыл бұрын
Oh, that's another good one I have to dive into to be able to answer. We'll get there ;)
@VladimirShatalov4 жыл бұрын
Nice presentation, thank you!
@yuzaR-Data-Science4 жыл бұрын
Thanks for a nice feedback, Vladimir! I am glad it is useful!
@jarade815 Жыл бұрын
thanks you very much to teach
@yuzaR-Data-Science Жыл бұрын
Thanks for watching
@cristianlizarazo8016 Жыл бұрын
excelente video gracias
@yuzaR-Data-Science Жыл бұрын
de nada amigo
@bogdanandjelic22002 жыл бұрын
good work man, any chance of advising me? got some data...Kinda want more than Wilcoxon from SPSS
@yuzaR-Data-Science2 жыл бұрын
Thanks for the feedback, mate! Check out my later videos and blog-post (links to blogs are always below the video in the description). You’ll get many ideas. Unfortunately I can’t advise folks, have two day jobs and making videos on top of it. But I totally recommend you to switch from SPSS to R
@bogdanandjelic22002 жыл бұрын
@@yuzaR-Data-Science I just need to know how do I swap places of two variables (boxes) on the plot. After on the left, makes no sense... Thanks.
@bogdanandjelic22002 жыл бұрын
@@yuzaR-Data-Science Also, where do we find SD
@yuzaR-Data-Science2 жыл бұрын
No worries, mate, you just need to change the levels of a factor variable "test" in your data: Fitness %>% mutate(test = factor(test, levels = c("Before", "After"))) the test will use the order you define in your data
@yuzaR-Data-Science2 жыл бұрын
you mean standard deviation of every group? well, there is an amazing function "describe" from {dlookr} package. It gives you all the stats for your groups in one word. it works perfectly with "tidyverse", thats how you can use "group_by()". I also did a video on dlookr, there are more useful things then just "describe"
@AngelFelizF3 жыл бұрын
Excelent. Thanks.
@yuzaR-Data-Science3 жыл бұрын
Glad you like it!
@danylokravchuk2 жыл бұрын
Sadly, but notch is not accessible now
@yuzaR-Data-Science2 жыл бұрын
Yeah, I asked the author of the package about it, and here is what he said: "I removed notch because it often just collapses on itself (mathworks.com/matlabcentral/answers/461791-what-do-lines-that-double-back-on-themselves-mean-box-plots)- Additionally, it is typically used for significance testing, which is redundant because ggstatsplot already provides such details in the plot itself."