Matplotlib Tutorial Ep. 1: How to make a Histogram plot

Поделиться
HTML-код
  • Опубликовано: 12 сен 2024
  • In this video, you will learn how to make as well as customize the histogram plot. A histogram allows visualization of the spread and shape of the data. Essentially, histogram shows the frequency versus the bins (can be thought of as buckets of value ranges whereby we are interested in counting the number of samples in each of these buckets or bins).
    🌟 Download Kite for FREE www.kite.com/g...
    ⭕ Links for this video
    - Code github.com/cod...
    - matplotlib.pyplot.hist documentation matplotlib.org...
    ⭕ Support my work:
    🌟 Subscribe to this channel (Coding Professor) / @codingprofessor
    🌟 Subscribe to my other channel Data Professor www.youtube.co...
    🌟 Join the Newsletter of Data Professor newsletter.data...
    🌟 Buy me a coffee www.buymeacoff...
    ⭕ Recommended Books:
    🌟kit.co/datapro...
    ✅ Python Basics: A Practical Introduction to Python 3 amzn.to/3awdWgm
    ✅ Learn Python Programming (The no-nonsense, beginner's guide) amzn.to/2RFpSpn
    ✅ Learn to Program with Minecraft amzn.to/3x2MujZ
    ✅ Automate the Boring Stuff with Python, 2nd Edition: Practical Programming for Total Beginners amzn.to/2QzkyDs
    ⭕ Disclaimer:
    Recommended books and tools are affiliate links that gives me a portion of sales at no cost to you, which will contribute to the improvement of this channel's contents.
    ⭕ Stock photos, graphics and videos used on this channel:
    ✅ Video intro made using Placeit 1.envato.marke...
    #python #matplotlib #histogram #pythontutorial #codingprofessor #dataprofessor

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

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

    ​👉 Watch this next: ruclips.net/video/oR670Txwh88/видео.html (The Art of Learning Data Science - How to learn data science in 2021)
    ----------
    🌟 Download Kite for FREE www.kite.com/get-kite/?
    🌟 Buy me a coffee www.buymeacoffee.com/dataprofessor
    🌟 Subscribe to Data Professor RUclips channel ruclips.net/user/dataprofessor
    🌟 Join the Newsletter of Data Professor newsletter.dataprofessor.org

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

    Excellence Always, "Thank you, sir!". stayed with you, from Dhaka , Bangladesh.

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

    Great work!! pls continue it and also make a video about plotly tutorial too :)

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

    Hello! great video. I have to point out something you said about the function np.random.normal(): You are NOT generating a distribution in range from 0 to 100, as you mentioned in min. 0:38; instead you are generating 100 points with a mean of 0 and a std of 10. Therefore:
    x = np.random.normal(mean,std,num. of points) .
    That's why you get negative values for the x array as well.

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

      Thanks for watching and for the correction!

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

    thank you

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

    Great work sir support from India❤️

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

    Can you make a video on a dynamic heatmap that updates automatically with time? For example stock prices during the day. Thank you.