RStudio: Summary stats, barchart, box-plot, qqplot (normality)

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

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

  • @PhilChanstats
    @PhilChanstats  6 лет назад +1

    Things I wished I had said:
    - From the qqplot, the data on the girls had short tails at both ends. In layman terms this means the fev scores are concentrated around the center of the distribution compared to the normal;
    -For the boys, the distribution had short lower tail. In layman terms, this means the lower end scores on fev are higher compared to the normal.
    -If we had large outliers in fev, then the median would be a better choice than the mean for communicating the middleness of the data.

  • @mushknizam3740
    @mushknizam3740 4 года назад

    You just helped me solve my question for my assignment. Has been searching for this so hours. Thanks. May Allah bless you :)

  • @zg3671
    @zg3671 4 года назад +1

    #barplot with categorical names.
    barplot(Data$cateogry1~Data$category2)
    #add this after the above command to make it pretty...
    #note: can change the y lim to control limit display area & the number in color can be anything as far as I know. Seems random...
    , main = "Title",
    xlab = "x axis title",
    ylab = "y axis title",
    ylim = c(0, 100),col=rainbow(10))

  • @judyuwa4583
    @judyuwa4583 4 года назад

    Thank you, I really enjoyed this presentation, the only thing that did not work for me was the is.factor for finding factors all came up false for some reason but I continued exercise without it and it seemed to work ok.

  • @jababnamgay6366
    @jababnamgay6366 4 года назад

    very helpful. Thank you sir

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

    GG

  • @ShadowQueen2
    @ShadowQueen2 4 года назад

    if the file is corrupted how do you fix it.

  • @Yayakamisama
    @Yayakamisama 4 года назад

    Is there a way for the Q-Q plot to show a p-value?

    • @PhilChanstats
      @PhilChanstats  4 года назад +1

      A p-value is connected to hypothesis testing. The QQ-plot (like other plots) is not performaing hypothesis testing so has no p-value. There are tests for normality.