Normality Testing in R-Studio || Shapiro-Wilk and Kolmogorov-Smirnov Test || Dr. Atman Shah || SXCA

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

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

  • @MultiVenuslove
    @MultiVenuslove Месяц назад +1

    Clearly explained

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

    Excellent Job, Prof.
    Keep it up.

  • @babikhandelwal9612
    @babikhandelwal9612 3 года назад +2

    Sir, Is there any problem to use ks test if the observations are repeated?

  • @amirhosseinqaem4610
    @amirhosseinqaem4610 3 года назад +1

    Thank you Man.

  • @munshir.c6161
    @munshir.c6161 3 года назад +1

    Hi thank u .
    Wht is interpretation of W in shapiro and D in ks

  • @rajatsharma9322
    @rajatsharma9322 3 года назад +1

    Sir can you share the reference for ks test used for more than 100 obs. ?

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

    Subtitles disturbing and cannot see below written things

  • @bryanlewis8028
    @bryanlewis8028 3 года назад +1

    Perfect video

  • @BikramSingh-qb9uh
    @BikramSingh-qb9uh 3 года назад +1

    nice explain

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

    Great video... thank you. Quick question, why did we use the argument "pnorm" in the Kolmogorov-Smirnov test?

    • @CrackEconomicsandStatistics
      @CrackEconomicsandStatistics  4 года назад +2

      That is the command.

    • @manasiwalimbe8960
      @manasiwalimbe8960 3 года назад +3

      KS is a goodness of fit test. In any GOF test, you will find observed data and expected data. So y here is your observed data set and pnorm is the expected data set. Hence it is required for you to write the pnorm argument so that you will have something to test your goodness of fit against. I hope this helps.

    • @thespaniardinme
      @thespaniardinme 3 года назад +1

      @@manasiwalimbe8960 It more than helps. Thank you so much!

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

      You can use the Kolmogorv-Smirnov test to check various distributions.
      If you wanted to check whether your data came from a Poisson distribution you would have put the "ppois" argument
      exponential distribution --> "pexp"
      uniform distribution --> "punif"
      and so on

  • @sophiad.1723
    @sophiad.1723 3 года назад

    This is really helpful!!

  • @deveshmaheshwari541
    @deveshmaheshwari541 3 года назад +1

    Can you do a video on qqplot and skewness

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

    hello so the default alpha in r studio is 0.05?

  • @SachinSingh-nv9qe
    @SachinSingh-nv9qe 4 года назад

    Love you sir👌...but please give option to offline download

  • @sukursukur3617
    @sukursukur3617 3 года назад +1

    Why normality tests? Why dont we implement poissonity test? What makes normal distribution privileged among other distributions?

    • @mjos5813
      @mjos5813 3 года назад +1

      Because it is hypothesized that in the real world, as the sample sizes increases, they follow a normal distribution.

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

    Hi. I have continuous data such that there are two groups (normal and abnormal spine) i.e. there are continuous type readings in each category. I tried to run ks test on both datasets in both Rstudio and SPSS but I get different results.
    SPSS results
    abnormal category: p=0.2
    normal category: p=0.037
    RStudio results
    abnormal category: p

  • @kar2194
    @kar2194 3 года назад +1

    Wrong? We should test the normality of *residuals* not the data. For example - shapiro.test(model$residual)
    It was what I learnt from school. Please, correct me.

    • @CrackEconomicsandStatistics
      @CrackEconomicsandStatistics  3 года назад +1

      That's applied to regression analysis.
      This is helpful to identify whether we should use parametric or non-parametric tests.

    • @kar2194
      @kar2194 3 года назад +1

      @@CrackEconomicsandStatistics Thanks for your comment, do you have a tutorial to compare normality test on t-test and simple linear regression? Thanks!