Describe and Summarise your data

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 พ.ย. 2024

ความคิดเห็น • 98

  • @RProgramming101
    @RProgramming101  ปีที่แล้ว

    Get my FREE cheat sheets for R programming and statistics (including transcripts of these lessons) here: www.learnmore365.com/pages/membership-r-programming-data-visualization-and-research-methods

  • @Shawn-gm4cf
    @Shawn-gm4cf 2 ปีที่แล้ว +3

    To parrot others, you always have premium R content. Probably the only resource where I look forward to seeing it in my TH-cam feed.

  • @zique711
    @zique711 15 วันที่ผ่านมา

    You Sir. are the best educator when it comes to teaching R. I love your enthusiasm for the subject; keeps me engaged.

  • @Schmelena
    @Schmelena 2 ปีที่แล้ว +18

    You really make the best R-videos. Always feel motivated to work with R after watching this. Thank you very much!

    • @gregmartin
      @gregmartin 2 ปีที่แล้ว +1

      Thanks 👍🏻👍🏻👍🏻👍🏻 glad to hear it.

  • @makemymarket1772
    @makemymarket1772 ปีที่แล้ว +5

    Imagine have you as a professor at the university, everyone would pass. Big thanks to you!

    • @RProgramming101
      @RProgramming101  ปีที่แล้ว

      Wow Thank you for your kind words, I really appreciate it!

  • @opal-r2h
    @opal-r2h 2 ปีที่แล้ว +1

    I hated R till I found your channel , I know there are a million comments telling you same thing but you are one of the best R teachers. I hope you are having a good day wherever you are in the world ❤

    • @RProgramming101
      @RProgramming101  2 ปีที่แล้ว

      Thank you so much, Farida. I really appreciate your feedback 😀

  • @coldwarifyful
    @coldwarifyful 2 ปีที่แล้ว +1

    so far you have taught R in the best way. Please do the complete R tutorials with the aim of cracking a data analyst job. We really do not know what we need to cover as in for performing good at data analyst jobs. You can also make a video depicting an overall picture or syllabus for R, for different kind of analysis which will help us to know what all we have to learn to get a job as a DA first, and then take it from there. Please be consistent. You are amazing.

  • @matthewharvey4414
    @matthewharvey4414 10 หลายเดือนก่อน

    The best educational R videos I have found on TH-cam, thank you for the helpful information.

  • @dingaroo2003
    @dingaroo2003 2 ปีที่แล้ว +1

    I should have gone through this set of videos months ago! Would have saved me many sleepless nights and project delay!

  • @data_kom
    @data_kom 2 ปีที่แล้ว +1

    I love your style of teaching. Your approach makes coding easy. Thanks for the great work you’re doing.

    • @RProgramming101
      @RProgramming101  2 ปีที่แล้ว

      You're very welcome! Glad you enjoyed it!

  • @franj3628
    @franj3628 2 ปีที่แล้ว +5

    Very well explained tutorial, as always. Please, keep posting new videos.

  • @ray564k
    @ray564k 2 ปีที่แล้ว +1

    Great video - thanks very much! Thanks for explaining that last part slowly too.
    One minor comment -> @10.02 I couldn't see your full console, so missed that there needed to be a close brackets, pipe operator before the 'arrange' function starts.

  • @frankjr3787
    @frankjr3787 2 ปีที่แล้ว +10

    Hi Greg - would it be possible to make a video on creating publication ready summary tables using r and r-markdown? Particularly summary statistics tables and regression tables

    • @DH-tv6wl
      @DH-tv6wl ปีที่แล้ว

      Interested in this too. Have you tried the stargazer package?

  • @roxisrocks
    @roxisrocks ปีที่แล้ว

    You are an absolute rockstar, thank you very much. R is amazing, and you are an equally amazing teacher.

  • @jamesleleji6984
    @jamesleleji6984 2 ปีที่แล้ว +1

    Your videos are always illuminating and a great reference when working in R. Please do a tutorial on difference in differences using R. Thanks

  • @yizheng6299
    @yizheng6299 2 ปีที่แล้ว

    Thanks Greg, R Programming 101 is the best R programming tutorial I have ever found !

  • @dopamining6932
    @dopamining6932 2 ปีที่แล้ว +6

    Really love the tutorials. Is there any chance there could be a playlist/video on user-defined functions and loops in the future? I'm finding it hard to find a good tutorial that goes through it all slowly. Cheers.

  • @fredrickombede880
    @fredrickombede880 2 ปีที่แล้ว

    The best place to learn R, I really enjoy. Thanks

    • @RProgramming101
      @RProgramming101  2 ปีที่แล้ว

      Happy to hear that! Thank you for the feedback.

  • @aseelaraji7045
    @aseelaraji7045 2 ปีที่แล้ว +6

    Amazing way as Usual Thanks 🙏 keep up the great work looking forward for the next episode

  • @CaribouDataScience
    @CaribouDataScience ปีที่แล้ว

    Thanks, one note if you use the summary() on a column that contains factors it will return the number of rows for each factors.

  • @ikeforshort5363
    @ikeforshort5363 ปีที่แล้ว

    I am so grateful you took the time to explain 'everything.' I paid for a course and only learned a fraction of what I'm learning with your videos. I would love to know how to change the UTC timestamp into a particular zone. I am working with a crime dataset and trying to figure out #1 what day of the week most occurred and what time they occurred. I've read numerous articles, but I need help understanding the concept. ♥

    • @ikeforshort5363
      @ikeforshort5363 ปีที่แล้ว

      Just found your Lubridate video... heading there now ☺

  • @kottelkannim4919
    @kottelkannim4919 ปีที่แล้ว +2

    A tidyverse implementation of
    prop.table(table(AirBags, Origin))*100
    is:
    Cars93 %>%
    group_by(AirBags,Origin) %>%
    summarise(number = n()) %>%
    ungroup() %>%
    mutate(propor = round (number / sum(number),3 )*100) %>%
    pivot_wider(id_cols = "AirBags" , names_from = Origin,
    values_from = propor)
    or even a shorter one using *count()* to replace the aforementioned 2nd and 3rd rows :
    Cars93 %>%
    count(AirBags,Origin) %>%
    mutate(propor = round (n / sum(n),3 )*100) %>%
    pivot_wider(id_cols = "AirBags" , names_from = Origin,
    values_from = propor)

    • @somnusnemoris2903
      @somnusnemoris2903 ปีที่แล้ว +1

      Thank you so much, I was wondering about that part

    • @boojaado
      @boojaado 8 หลายเดือนก่อน +1

      Thanks for providing these lines of code. I added the first part to this.
      Cars93 %>%
      group_by(AirBags,Origin) %>%
      summarise(number = n()) %>%
      ungroup() %>%
      pivot_wider(id_cols = "AirBags",
      names_from = Origin,
      values_from = number)

  • @andresrengifo7801
    @andresrengifo7801 2 ปีที่แล้ว +2

    Great videos about R, congratulations

  • @nadyamoscow2461
    @nadyamoscow2461 2 ปีที่แล้ว

    Many thanks once again for your fantastic course!

    • @RProgramming101
      @RProgramming101  2 ปีที่แล้ว +1

      Happy to hear that! You are most welcome!

  • @spyrostsilimparis4101
    @spyrostsilimparis4101 2 ปีที่แล้ว

    Your videos are excellent and you explain everything in a very simple way, I can say that I have filled in a lot of gaps, especially in visualisation. I was wondering if you will create more videos or specifically videos regarding loops. Thank you!

  • @EguonoOgundare
    @EguonoOgundare ปีที่แล้ว

    wonderful video. Greg, I have learned so much from your videos. Thank you.

    • @RProgramming101
      @RProgramming101  ปีที่แล้ว

      Thanks for the feedback. Much appreciated. I'm glad that you found it helpful.

  • @chetmanichaudhary5685
    @chetmanichaudhary5685 7 หลายเดือนก่อน

    Very helpful.
    How to compute with the data that contains greater than or lesser than (6) in R.

  • @MCshaneization
    @MCshaneization 2 ปีที่แล้ว

    Extremely well thought-out and practical!

  • @phumzilendlebe2726
    @phumzilendlebe2726 ปีที่แล้ว

    Awesome! Thank you as always....🙏 You Rock!!!!

  • @zoubidanemer4500
    @zoubidanemer4500 2 ปีที่แล้ว

    Thank you for these beautiful videos. I'd be really happy if you made one on packages that deal with spatial data like cartography. Thanks for your efforts 👍

    • @RProgramming101
      @RProgramming101  2 ปีที่แล้ว

      Great suggestion! Thanks for your feedback 😀

  • @natashasamuel9346
    @natashasamuel9346 ปีที่แล้ว

    Great class.
    Keep up the good work.
    Thank You,
    Natasha Samuel

    • @RProgramming101
      @RProgramming101  ปีที่แล้ว

      Thank you! 😃 thanks for the great feedback!!

  • @al24953
    @al24953 ปีที่แล้ว

    wonderful lecture

  • @MrLunary
    @MrLunary 2 ปีที่แล้ว +1

    Great videos! Keep the good stuff coming!

  • @romanvasiura6705
    @romanvasiura6705 2 ปีที่แล้ว

    Thank you for this lesson.
    Step by step I am begining to be a big fun of your TH-cam channel 😀)
    P.S. Thank you for these valuable knowledge what you share for us.

  • @muhammedhadedy4570
    @muhammedhadedy4570 2 ปีที่แล้ว

    Great as usual. Thank you so much for your great videos.

  • @spirosgyparakis8888
    @spirosgyparakis8888 2 ปีที่แล้ว

    Great video, thank you! Is there any package that can be used to created the coloured table with the percentage indicator you showed at the beginning of the table? Thank you!

  • @HoCkEyLeGeNd588
    @HoCkEyLeGeNd588 ปีที่แล้ว

    HELP! That output table you made (with the period as a name)....how do I change the name of this or export the output as a CSV. None of the normal "write.csv" functions work when I try to extract the data. The sheet just comes back blank.

  • @masreshabirara
    @masreshabirara 17 วันที่ผ่านมา

    fantastic guy

  • @jababnamgay6366
    @jababnamgay6366 ปีที่แล้ว

    Very helpful sir

  • @paulyoung3897
    @paulyoung3897 2 ปีที่แล้ว

    Thanks so much. These are great. Keep it up.

  • @vijaybm4202
    @vijaybm4202 2 ปีที่แล้ว

    Very well explained 👍

  • @brianglong11
    @brianglong11 ปีที่แล้ว

    Excellent videos

  • @sullivanfam01
    @sullivanfam01 ปีที่แล้ว

    Very helpful video! Do any videos explain how to create the prop table using the tidyverse?

    • @ThomasWilliswin308
      @ThomasWilliswin308 ปีที่แล้ว

      Did you ever find a solution for this question?

  • @boojaado
    @boojaado 8 หลายเดือนก่อน

    Hello, where is the 'analyze' tutorial? I do not see just one video. I do see the playlist for regressions, I want to assume these are the videos for 'analyze'.

  • @MadhumatiManjunath
    @MadhumatiManjunath ปีที่แล้ว

    Wide_data is showing up as NULL in my RStudio's environment and hence pivot_longer is also throwing up errors. Please let me know what to do in this instance.

  • @amosarubi8468
    @amosarubi8468 2 ปีที่แล้ว

    I love you man! Thank you so much.

  • @donkeyally
    @donkeyally 2 ปีที่แล้ว

    Great R tutorial! I’m looking forward to learn. from you more =)
    Anyway, do you have any recommended book about R for statistics and data science for further reading?

  • @blackpanda43
    @blackpanda43 2 ปีที่แล้ว

    Hi, say i have two tables in R and i want to see which rows in a column in table 1 are also there in a column in table 2, how would I go about?

  • @dougedmunds
    @dougedmunds ปีที่แล้ว

    A note regarding code at 5:03. There is a coding difference between using the |> pipe instead of %>%. If using |> , the final "summary" requires parentheses, i.e., summary(). (R version 4.3.0)

  • @DB-kv3wu
    @DB-kv3wu 7 หลายเดือนก่อน

    Great thanks!

  • @onurucar1112
    @onurucar1112 2 ปีที่แล้ว

    Love your videos, please keep uploading them :)

  • @Roberttherobot69
    @Roberttherobot69 ปีที่แล้ว +1

    can u help summaries data from experiment such as CV% Significant data or not sig and how to table them

    • @easydatascience2508
      @easydatascience2508 ปีที่แล้ว

      You can try mine too. The channel has both Python and R playlist for fundamentals. And source files downloadable.

  • @yaweli2968
    @yaweli2968 3 หลายเดือนก่อน

    I was thinking maybe drop_na for both vore and sleep_total. What if vore had no NA but its associated sleep_total had NA? Won’t it be best practice to drop NA in both? Oh maybe I am confused.

  • @space5more
    @space5more 7 หลายเดือนก่อน

    pivot not the issue, but lingering around number = n(). .. Thank you -

  • @flaviusradac4602
    @flaviusradac4602 2 ปีที่แล้ว

    Can you be so kind to make a dummy variabile model please!!... Thank you!
    I love your videos, they are very helpful.. Thank you! :)

  • @skcarterr
    @skcarterr ปีที่แล้ว

    The prop table done with DPLYR didn’t give percentages.

  • @worldwide6626
    @worldwide6626 2 ปีที่แล้ว

    What does number=n() do inside the summarise parameter?

  • @max5916
    @max5916 2 ปีที่แล้ว +1

    New video 😍

  • @raghavkhandelwal7555
    @raghavkhandelwal7555 6 หลายเดือนก่อน

    Hello Sir, sir can you please suggest a good youtube channel from where i can learn Python

  • @BenjaminLiraLuttges
    @BenjaminLiraLuttges 2 ปีที่แล้ว +1

    16:29
    Rather than that you can simply do Cars93 %>% count(Origin,AirBags)...

  • @maidach6964
    @maidach6964 ปีที่แล้ว

    Can you please help me i am trying to run this code but it shows error

  • @vincenzo4259
    @vincenzo4259 2 ปีที่แล้ว

    Thanks

  • @RodBarkerdigitalmediablog
    @RodBarkerdigitalmediablog 2 ปีที่แล้ว

    msleep %>%
    drop_na(vore)%>%
    group_by(vore)%>%
    summarise(Lower = min(sleep_total),
    Average = mean(sleep_total),
    Upper = max (sleep_total),
    Difference =
    max(sleep_total)- min(sleep_total),
    arrange(Average)%>%View() arrange(Average)%>%View()
    Error in View : object 'Average' not found

    • @faribazare7350
      @faribazare7350 2 ปีที่แล้ว

      i get this error too

    • @drsam7655
      @drsam7655 ปีที่แล้ว

      There is a close parenthese and a pip operator missing befor arrange

    • @saadalhumaid3959
      @saadalhumaid3959 ปีที่แล้ว

      @@drsam7655 thank you

  • @HugoLopez-ih4ut
    @HugoLopez-ih4ut 2 ปีที่แล้ว

    Why is it zoomed in too much!

    • @608er
      @608er 2 หลายเดือนก่อน

      ?

  • @sojibulislam1004
    @sojibulislam1004 2 ปีที่แล้ว

    You really make the best R-videos. Always feel motivated to work with R after watching this. Thank you very much!

    • @RProgramming101
      @RProgramming101  2 ปีที่แล้ว

      Thank you for the feedback. Glad you enjoyed it!