Tukey's Test and Letters to Indicate Significant Differences - Two-Way ANOVA with R - tutorial 2

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

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

  • @johnstoni
    @johnstoni 27 дней назад

    this was what I needed!

  • @sunkumargurung1172
    @sunkumargurung1172 2 года назад +5

    You deserve more subscribers and views maybe people are unaware of your content. it's absolutely great.

    • @RosaneRech
      @RosaneRech  Год назад +2

      Thank you! I hope my videos can get to people who can benefit from them!

  • @natasam7544
    @natasam7544 2 года назад +2

    You are awesome! You saved my seminar presentation for next week!

  • @kulwakan
    @kulwakan 2 года назад +2

    Hi Rosane, many thanks for this. It is a very useful tutorial.

  • @cristyallen8074
    @cristyallen8074 6 месяцев назад

    Hi! What code should I input to get CDL if I did Dunn’s Test? Thanks!

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

    hey that was really helpful..Thanks alot!!...How to make the table with the mean+sd+letters? Does it have a code or do we have to do it manually?

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

    Was really helpful. Thanks!! :)

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

    This helped me so much! Obrigado!

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

    Hi Rosane. It was a clear tutorial. What about adding the letter when you have that treatment*day is significant? ie when you Aa letters describing the significance... Thank you in advance!

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

      Hi, there is no difference to present the letters when the interaction is significant.
      However, sometimes, instead of comparing all the treatments, it is desirable to compare by rows and columns. This way one can use uppercase and lowercase letters to differentiate rows and columns.

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

      @@RosaneRech Obrigado! I will reformulate my question. The interaction day*treatment is not significant yet day and treatment are significantly (individually). how do I report this with letters in a table showing the means? Thank you in advance! Cheers, G

  • @eymardemis-hiversegna2585
    @eymardemis-hiversegna2585 11 месяцев назад

    I have a problem. I want to use the Tukey test to compare the means of 5 groups, only 4 of which have a normal distribution and the others do not. How can I do this?

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

      The Kruskal-Wallis test can be used when we cannot assume a normal distribution.

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

    A big issue when applying my data, it does not calculate mean and standard deviation, though I am following the same codes and steps

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

    Hi, dear Rosane! Could you please help? Error object 'tukey.cld' not found error, what does it mean?

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

      Hello, please check you loaded all libraries and did not skip any row when running the code.

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

    Using the data summary function, to get the table with factors, means, and sd, I run into an error. Treatments that have a smaller number of observations do not appear in the summary table. Can anyone help?

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

    Which app did you use for this pls?

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

      Are you asking about the plots? They were built in R.
      Barplots: ruclips.net/video/BAIMrhZWLe4/видео.htmlsi=NVNj1verzAJZ6PXR
      Scatterplots: ruclips.net/video/bBKLJ5d-d9U/видео.htmlsi=As5lkrr2Dh5u-fkg

  • @draaa2893
    @draaa2893 10 месяцев назад

    Please help, I cannot find the library multcompView package in my library

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

      If it is not there, please install the library first using the code < install.packages("multcompView") >

    • @draaa2893
      @draaa2893 10 месяцев назад

      @@RosaneRech thank you very much ❤️

  • @habibinasratullah959
    @habibinasratullah959 3 года назад

    It was very interesting for me. Could you please provide the excel file I mean I want to know the data entry type?

    • @RosaneRech
      @RosaneRech  3 года назад

      Hi Habibi, you can to download the dataset following the link in the description of the video.

    • @habibinasratullah959
      @habibinasratullah959 3 года назад

      @@RosaneRech , Thank you. I watched the first tutorial and I understood the dataset. It was very helpful for me.

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

    I have found this method makes a lot of errors when the comparison is complex. not reliable. ... currently looking for a better method please suggest if anyone knows.

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

      I'm looking for a method to produce graphics for three levels interactions too. . this one only accept two when i insert the third level factor the summarise function cant arrange the data. . Cant fing anything either

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

    I don`t understand anything

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

    Hi Rosane
    While entering the code: tukey.cld

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

      I believe the source of analysis is not addressed properly. Please try replacing anova with anova.rr in the code.

  • @OlimHayot
    @OlimHayot 5 месяцев назад

    getwd()
    setwd("D:/")
    library(readxl)
    R %
    summarise(mean = mean(`Light`, na.rm = TRUE), sd = sd(`Light`, na.rm = TRUE)) %>%
    arrange(desc(mean))
    # View the data_summary dataframe
    View(data_summary)