R Data Science - Cleaning Messy Data

Поделиться
HTML-код
  • Опубликовано: 4 ноя 2024

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

  • @pipertripp
    @pipertripp 10 месяцев назад +1

    Lots of great stuff packed into this presentation. The regex work was particularly useful! Thank you and cheers!

  • @jacobulzen3272
    @jacobulzen3272 3 года назад +2

    Great. Thanks for making complex things simple for beginners

  • @stanleybabatunde1066
    @stanleybabatunde1066 3 года назад +2

    Great explanation making it easy for me to understand. You are a Gem

  • @evergreenfidelity147
    @evergreenfidelity147 3 года назад +2

    Great works...

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

    You did a great job. Thank you.

  • @ahmed007Jaber
    @ahmed007Jaber 2 года назад +1

    thank you for this. this is superb and very informative

    • @fiiinspires
      @fiiinspires  2 года назад

      You're very welcome!

    • @ahmed007Jaber
      @ahmed007Jaber 2 года назад +1

      @@fiiinspires hope to see more of this nature; i am going through the same video more than once and i am getting a lot of knowledge

  • @ahmed007Jaber
    @ahmed007Jaber 2 года назад +1

    love the content. got any courses or playlist for such content?

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

      ruclips.net/video/miL9VaeDJPg/видео.html

  • @MohammadUllah-ol4kz
    @MohammadUllah-ol4kz 4 месяца назад

    Hi, I didn't find the code in google drive, though the emergency data was there.

    • @fiiinspires
      @fiiinspires  4 месяца назад

      docs.google.com/spreadsheets/d/1AyBMHXA5cv1bKX_Nd2WlxAQIBOLKKYd4/edit?usp=sharing&ouid=116327071321401868336&rtpof=true&sd=true

  • @ahmed007Jaber
    @ahmed007Jaber 2 года назад

    hi; I have couple of column names that have this at the beginning
    "^cumulative_cumulative_"
    how would I use across or something similar to replace all those column names with a single "cumulative_"

    • @fiiinspires
      @fiiinspires  2 года назад

      I will assume you have tidyverse or dplyr installed and attached
      df % rename_with(.fn = ~str_remove(., "cumulative_"), .cols = starts_with("cumulative_cumulative_"))

    • @ahmed007Jaber
      @ahmed007Jaber 2 года назад +1

      @@fiiinspires thank you for this. I will try it

    • @ahmed007Jaber
      @ahmed007Jaber 2 года назад

      @@fiiinspires thank u. It works like charm
      Do you work with rmarkdown with word out put? It is driving me crazy i cannot make small charts with all the information
      I hope you keep posting such tutorials
      I am hungry to learn and implement new ideas