Tidy Data and tidyr -- Pt 2 Intro to Data Wrangling with R and the Tidyverse

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

КОМЕНТАРІ • 29

  • @MikeDolanFliss
    @MikeDolanFliss 4 роки тому +8

    Looking forward to an update on this for the new pivot_longer() and pivot_wider() grammar!

    • @keanujack605
      @keanujack605 3 роки тому

      I know Im randomly asking but does anyone know of a method to get back into an instagram account?
      I stupidly lost my account password. I would appreciate any assistance you can give me.

    • @mackgerardo4152
      @mackgerardo4152 3 роки тому

      @Keanu Jack Instablaster =)

    • @keanujack605
      @keanujack605 3 роки тому

      @Mack Gerardo i really appreciate your reply. I found the site thru google and Im trying it out now.
      Takes quite some time so I will reply here later with my results.

  • @comditek4264
    @comditek4264 5 років тому +2

    Great video! nicely explained and well delivered with graphics!

  • @eliebordron5599
    @eliebordron5599 4 роки тому

    I learned just so much by watching this. I regret I wasn't able to download the datasets, I don't know if it's me or the venerable age of the video

  • @shibukalidhasan5815
    @shibukalidhasan5815 6 років тому +1

    Nicely presented - short and succinct

  • @eyadha1
    @eyadha1 2 роки тому

    thank you very much for this helpful video

  • @AkshayRasal10
    @AkshayRasal10 5 років тому

    Great Video - Well explained and Easy to understand

  • @ゴリラ-w3h
    @ゴリラ-w3h 5 років тому +2

    すごく分かりやすい!

  • @chamodhperera2485
    @chamodhperera2485 4 роки тому +3

    Can't download EDAWR from github.
    Error: Failed to install 'EDAWR' from GitHub:
    (converted from warning) cannot remove prior installation of package ‘backports’

  • @Sadia_AustralianJourneys
    @Sadia_AustralianJourneys 4 роки тому

    Excellent presentation

  • @kvs123100
    @kvs123100 3 роки тому

    12:23 you gave life to me!

  • @johnsonmshiu4837
    @johnsonmshiu4837 4 роки тому +1

    Hi, is it possible to use function separate() to separate more than one column using the pipe operator or any other method? thanks

  • @tekoeko
    @tekoeko 3 роки тому

    So are gather and spread replaced by pivot_longer and pivot_wider?

  • @vincenzo4259
    @vincenzo4259 2 роки тому

    Thanks

  • @tamal_sen
    @tamal_sen 6 років тому +2

    @Garret : Please advise how to import the data sets? I have installed "devtools" package, but unable to install package "EDAWR". Looking for your help. thank you .

    • @williambiggs2308
      @williambiggs2308 6 років тому +1

      package ‘EDAWR’ is not available (for R version 3.4.1)

    • @VercingetoR3x
      @VercingetoR3x 5 років тому

      @@williambiggs2308 Using anaconda, how does one create an environment with an older version of base-r (3.5.1)? Is base-r 3.4.1 needed to access the EDAWR package?

    • @FancyTreer032
      @FancyTreer032 5 років тому +1

      HI, you can create theme by yourself.
      country

    • @amendez721
      @amendez721 4 роки тому

      @@FancyTreer032 thank you very much!

  • @YouTube_ZMS
    @YouTube_ZMS 5 років тому

    I would prefer more coding examples. 8 minutes in before tidyr package is even introduced. Lets goooooooo

  • @SensiStarToaster
    @SensiStarToaster 4 роки тому +1

    Out of date! Please post update with *pivot_* functions, scoped variables and something on non-standard evaluation pleeeeze....

  • @My-NaMeS_jEfF
    @My-NaMeS_jEfF 3 роки тому

    Do we really want to pivot_wider pollution?
    pollution %>%
    ggplot(aes(city, amount, group = size))+
    geom_bar(aes(fill = size), stat = 'identity', position = 'dodge')

  • @musicspinner
    @musicspinner 3 роки тому

    very helpful

  • @jamespaz4333
    @jamespaz4333 3 роки тому

    He looks like Marty Mcfly Senior!!!

  • @InsiderMiner
    @InsiderMiner 3 роки тому +1

    nice presentation but the audio is pretty poor. the concept of observation is key

  • @InsiderMiner
    @InsiderMiner 3 роки тому

    Looking at your first use of gather, it seems that you have not properly assessed what an observation is, have you? I would think an observation here would best be defined as a country. Then, the columns, should be country name, count for 2011,count for 2012,count for 2013, shouldn't it? The way you have it, Country, Year, N; what are the observational units? A year-country? Why not make it a country, as I have suggested?