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

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

КОМЕНТАРІ • 32

  • @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!

  • @johnstoni
    @johnstoni 10 днів тому

    this was what I needed!

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

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

  • @RajKumarDahal
    @RajKumarDahal 2 роки тому +1

    Was really helpful. Thanks!! :)

  • @erichynes2141
    @erichynes2141 2 роки тому +1

    This helped me so much! Obrigado!

  • @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?

  • @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

  • @cristyallen8074
    @cristyallen8074 5 місяців тому

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

  • @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

  • @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.

  • @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?

  • @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  10 місяців тому

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

  • @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.

  • @emekaikechukwu6565
    @emekaikechukwu6565 Рік тому

    Which app did you use for this pls?

    • @RosaneRech
      @RosaneRech  11 місяців тому

      Are you asking about the plots? They were built in R.
      Barplots: ua-cam.com/video/BAIMrhZWLe4/v-deo.htmlsi=NVNj1verzAJZ6PXR
      Scatterplots: ua-cam.com/video/bBKLJ5d-d9U/v-deo.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 ❤️

  • @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)