Powerful R Functions Every Data Analyst Should Know

Поділитися
Вставка
  • Опубліковано 5 вер 2024

КОМЕНТАРІ • 7

  • @floriansitte-kratzsch7355
    @floriansitte-kratzsch7355 Рік тому +2

    Aggregation and pivoting are super central concepts in analysis. Neat summary!

  • @luisacuna1729
    @luisacuna1729 2 роки тому +4

    Amazing video, thanks!

    • @TheDataDigest
      @TheDataDigest  2 роки тому +2

      Thank you. I am glad you liked it. I will do more videos into the direction of data manipulation, base and dplyr R-functions and data exploration in the near future.

    • @luisacuna1729
      @luisacuna1729 2 роки тому +2

      @@TheDataDigest i Will stay tuned

  • @forrestoakley4882
    @forrestoakley4882 Рік тому +2

    Your videos are always very useful. Thank you!

    • @TheDataDigest
      @TheDataDigest  Рік тому +1

      Thanks you, that's the purpose. Let me know if you want some specific topics covered or if you find something that I could have explained better. Always try to get better :)

  • @osoriomatucurane9511
    @osoriomatucurane9511 Рік тому +1

    Awesome! That is a great trick piping into the table() and converting the output into a dataframe. I always wanted to use pivot_wider() to get proportions similar to base R prop.table() or crosstab. I got stuck, but now, where you summarize and get the mean I could instead get percentagem = n/sum(n)*100 and then proceed to pivot_wider() and get the proportion table. Am I right?
    As always I find your tutorials informative and surely commendable.