R programming for beginners: Select, filter and fill functions within the tidyverse

Поделиться
HTML-код
  • Опубликовано: 25 фев 2023
  • Learning R couldn't be easier. In this video, Greg and Andrew walk you through some tips and tricks for R programming. This is an R programming for beginners videos. If you're wanting to do data wrangling or data manipulation using R then this is a good place to start.
    This channel is supported by Nested Knowledge - an online platform that supports the entire literature review process. Please do check them out at this link: my.nested-knowledge.com/r-pro...
    Please check out Andrew's channel here on RUclips here: / @equitableequations
  • РазвлеченияРазвлечения

Комментарии • 21

  • @RProgramming101
    @RProgramming101  11 месяцев назад

    Get my FREE cheat sheets for R programming and statistics (including transcripts of these lessons) here: www.learnmore365.com/courses/rprogramming-resource-library

  • @IarukaSkYouk
    @IarukaSkYouk Год назад +1

    Greg and Andrew, you've just taught me a new thing today. Thank so much, guys!!

  • @elizabethpalu2447
    @elizabethpalu2447 Год назад

    Excellent video!! Thank you both!

  • @zaktin100
    @zaktin100 Год назад

    These videos are just wonderful. Rich with information and practical.

  • @jeremiahmuuo6407
    @jeremiahmuuo6407 Год назад +1

    Greg ....💯💯.

  • @robstewart8531
    @robstewart8531 Год назад

    Loving R more and more!

  • @Schmelena
    @Schmelena Год назад

    So great!!! Thank you

  • @haraldurkarlsson1147
    @haraldurkarlsson1147 Год назад +1

    Nice presentation. Thanks to both of you. I noticed that the location values are in a not-so-friendly format. There is a lat column which I presume is latitude and a longitude column. However, it looks like the values have been scrambled somehow since there is a longitude value (N) in the latitude column column and a latitude value (W) in the longitude column in row 9. Moreover, typically when working with latitude and longitude we use plus and minus rather than the usual cardinal directions (so latitude from -90 to +90 and longitude from -180 to +180).

  • @korman9872
    @korman9872 Год назад

    Tx sir

  • @abnambro1000
    @abnambro1000 Год назад

    Wow🏆

  • @SamarthDThakore27
    @SamarthDThakore27 Год назад

    ♥️

  • @MizuyMikal
    @MizuyMikal Год назад

    First, an excellent presentation by both of you.
    Andrew, regarding your data set. It would appear that the latitudes and longitudes have been reversed in your data set (set 1a Lat 87.82, long 42.15, set 2a lat 42.15, long 87.49).
    Data entry errors happen. Would there be a way of correcting this in R, or would you have to go back to the original data (*.csv, *.xlsx, etc) to correct this?

  • @pipertripp
    @pipertripp Год назад

    This is great!!! One thing I’ve noticed is that the native pipe doesn’t support the. operator like the maggritr pipe does.

    • @gianluca.pastorelli
      @gianluca.pastorelli Год назад

      I think the native pipe uses underscore (_) instead of dot (.)

  • @saltydog78
    @saltydog78 11 месяцев назад

    . . . I wonder what the shortcut to the native pipe is on Mac?

  • @brittnyfreeman3650
    @brittnyfreeman3650 Год назад

    Hey Greg, what if I wanted to group the data first, and then fill the NAs with the mean or median, or mode of each group?

    • @afonsoosorio2099
      @afonsoosorio2099 Год назад

      @Brittny, the way I understood, the data capturer or recorder, collected the data and filled in the first rows and left the subsequent rows that have the same records or data points for efficient reasons. That is where the Fill() function becomes handy to fill down programmatically those constant records. The values were not entirely "missing". To be precise, the fill() function is complementing the field data collection work.
      So it would be inappropriate to go for imputation (applicable in data cleaning), unless I missed something out.
      Boom chaka laka, easy just like taking breakfast in the morning!

  • @mocabeentrill
    @mocabeentrill Год назад

    Didn't know about the new pipe operator, it be looking sexy.

  • @CanDoSo_org
    @CanDoSo_org Год назад

    Hi, Gred and Andrew, Many thanks for your great tutorials. I got a question for you. How come {starwars %>%
    filter(eye_color == c("blue","yellow","red"))} works but gets different results compared to {starwars %>%
    filter(eye_color %in% c("blue","yellow","red"))}; while {msleep %>%
    filter(name == c("Cow","Dog","Horse")) } does not work at all, only {msleep %>%
    filter(name %in% c("Cow","Dog","Horse"))} works? I am a little confused.

  • @Funway20
    @Funway20 Год назад

    There is no CSV file Did not understand any thing