Gaussian naive Bayes - explained with a simple example

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

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

  • @Daniel-nm4kt
    @Daniel-nm4kt 3 месяца назад +2

    This channel is the best. This is where I really learn Statistics.
    Keep up the good work.

  • @好了-t4d
    @好了-t4d 11 месяцев назад +2

    i think this channel should get more attention
    it provides the core infos in statistic with subtitle in the vid
    thanks asual

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

    A very clear and well illustrated example and explanation. Great work!

  • @relegunet
    @relegunet Год назад +4

    Excelente explicación, gracias por compartir tu conocimiento, me ayudo a entender mejor la relación que existe entre dos variables continuas. 👍

  • @meshackamimo1945
    @meshackamimo1945 4 месяца назад +1

    Profam so happy I keep learning simpler methods to solve problems from u...kindly do a talk on bayesian filters and kalman filters..the very basics of the concepts

  • @jagajaga6908
    @jagajaga6908 Год назад +4

    what a wonderful explanation, thank you so much!!!

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

    These videos are very helpful!

  • @MonikaaVela
    @MonikaaVela 5 месяцев назад +2

    Basic example but good ! thanks :)

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

    I have never met a more goated individual.

  • @ShalinSingh-h2j
    @ShalinSingh-h2j 3 месяца назад

    2:12 Why is your standard deviation for x1 = 0.61? If you sum [2.5, 2.0, 1.7, 1.4, 1.2, 0.9, 0.8] you get 10.5, then summing the squared differences gets you 0.32, then the square root of that is 0.56. I didn't get 0.61 for my standard deviation calculation of those samples.

    • @tilestats
      @tilestats  3 месяца назад

      If you compute the SD for a sample, you calculate the sample standard deviation by dividing by n-1 (not n):
      ruclips.net/video/pLH1QA4F9uE/видео.htmlsi=fxdiTBQDmUv3SlRo

    • @ShalinSingh-h2j
      @ShalinSingh-h2j 3 месяца назад

      @@tilestats Oh! Good to know, thanks!

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

    I get different standard deviation values, the means are in line. Great video by the way...

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

      Can you show your calculations?

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

      Here you go, I may be wrong of course
      np.sqrt(clf_gsn.fit(X_cancer, y_cancer).sigma_))
      @@tilestats

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

      Simply calculate the SD of each group like:
      import numpy as np
      X_cancer = np.array([4.1, 3.4, 2.9, 2.8, 2.7, 2.1, 1.6])
      y_cancer = np.array([2.5, 2.0, 1.7, 1.4, 1.2, 0.9, 0.8])
      print(np.std(X_cancer))
      print(np.std(y_cancer))

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

      I get 0.756 and 0.566 the same as before, but that is not what is in the video, they are 0.82 and 0.61 there@@tilestats