Complete Python NumPy for Data Science in 30 minutes | NumPy Python Full Guide

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ธ.ค. 2024

ความคิดเห็น • 35

  • @nivethakannan8158
    @nivethakannan8158 ปีที่แล้ว +8

    The way he speaks politly to make us understand was awesome!! Thank you so much for the valuable content❤

  • @kapamagicman
    @kapamagicman 8 หลายเดือนก่อน +1

    Very peaceful listening to you. Straight to the point with examples. Thank you. Will watch this again

  • @rickyeditz2698
    @rickyeditz2698 ปีที่แล้ว +1

    Iam attractive to ur communication skills hats off brother❤❤❤❤

  • @maruthiprasad8184
    @maruthiprasad8184 ปีที่แล้ว +1

    superb. Thank you so much for valuable content.

  • @tejaskotkar644
    @tejaskotkar644 ปีที่แล้ว +1

    thank you sir very much you explained
    it very well😊😊😊😊

  • @ankitpandya2476
    @ankitpandya2476 2 ปีที่แล้ว +1

    Thank you sir for making video for paythons library 👌👍

  • @MHNayon
    @MHNayon ปีที่แล้ว +3

    Great tutorial! Do you have a numpy tutorial with the real-world data?

    • @SatyajitPattnaik
      @SatyajitPattnaik  ปีที่แล้ว

      NumPy is just one of the libraries, you cant solve everything by NumPy, so I couldn’t get your question quite well, what do u mean by numpy tutorial with real world data?

    • @MHNayon
      @MHNayon ปีที่แล้ว +2

      @@SatyajitPattnaik Ok, I would like see a video where you first upload a csv file and then analyze the data with the help of Numpy just like you did with Pandas. Is it possible?

    • @SatyajitPattnaik
      @SatyajitPattnaik  ปีที่แล้ว

      @@MHNayon so you basically want to see how NumPy can be used in real time analysis, thats basically called as EDA, Please go through one of my EDA videos where we used pandas and numpy to get insights from the data

    • @yhashyour7669
      @yhashyour7669 ปีที่แล้ว +1

      @@SatyajitPattnaik sir ye playlist complete hai kya?

  • @toji6
    @toji6 2 ปีที่แล้ว +1

    Thank u 😊 so much sir 😊

  • @naturalworld5006
    @naturalworld5006 8 หลายเดือนก่อน

    Good approach !!!

  • @ratnak1058
    @ratnak1058 2 ปีที่แล้ว +1

    Thank you sir

  • @kojomensah1740
    @kojomensah1740 ปีที่แล้ว +1

    Awesome

  • @NatchiyarShiva
    @NatchiyarShiva 6 หลายเดือนก่อน +1

    (1,3) is a shape of an array or it is called as 1 cross 3 matrix please clarify

    • @SatyajitPattnaik
      @SatyajitPattnaik  6 หลายเดือนก่อน

      (1,3) shape means 2d array with 1 row and 3 columns, or often referred as 1X3 matrix

  • @amolpatil4545
    @amolpatil4545 6 หลายเดือนก่อน +1

    Actually, this is very helpful. But if you could take real-life examples, then it would be fruitful. If you could use a CSV or Excel data source, then it will be easy to understand.

    • @SatyajitPattnaik
      @SatyajitPattnaik  6 หลายเดือนก่อน

      Please refer to my end to end EDA video where i have used pandas and numpy 😀

  • @sanket565
    @sanket565 2 ปีที่แล้ว +3

    If you were there 2 years back. I wouldn't have taken a 54k course on simplilearn.

    • @SatyajitPattnaik
      @SatyajitPattnaik  2 ปีที่แล้ว +1

      omg, 54k?

    • @sanket565
      @sanket565 2 ปีที่แล้ว

      Yes.. The Purdue University PG program even costs over 1 Lakhs.

    • @SatyajitPattnaik
      @SatyajitPattnaik  2 ปีที่แล้ว +2

      @@sanket565 Share my channel across your network so that noone spends that much for a data science course and can learn from my channel 🤩

    • @smita_p
      @smita_p ปีที่แล้ว

      Truee.. Me also with 75k course🥲

  • @ahsan4370
    @ahsan4370 2 ปีที่แล้ว +1

    ❤️

  • @ameermohammed5689
    @ameermohammed5689 ปีที่แล้ว

    Flag question: Question 1
    Question 1 1 pts
    Which form of import is not accepted?
    Group of answer choices
    import numpy
    from numpy import sin, cos, linspace
    from numpy import *
    import numpy as np
    Flag question: Question 2
    Question 2 1 pts
    What is the correct order for the parts of a program?
    Group of answer choices
    imports
    function definitions
    main program
    function definitions
    imports
    main program
    main program
    imports
    function definitions
    main program
    function definitions
    imports
    Flag question: Question 3
    Question 3 1 pts
    Which of these mini programs is the correct one to create a simple plot?
    Group of answer choices
    Correct answer
    import numpy as np
    import matplotlib.pyplot as plt
    x = np.linspace(-5.0, 5.0, 1000)
    y = np.sin(x)
    plt.plot(x, y)
    plt.figure()
    plt.show()
    Answer 2 Toggle editing answer text as HTML Answer 2Delete this answer
    import numpy as np
    import matplotlib.pyplot as plt
    x = np.linspace(-5.0, 5.0, 1000)
    y = np.sin(x)
    plt.figure()
    plt.show()
    import numpy as np
    import matplotlib.pyplot as plt
    x = np.linspace(-5.0, 5.0, 1000)
    y = np.sin(x)
    plt.figure()
    plt.plot(x, y)
    plt.show()
    import numpy as np
    import matplotlib.pyplot as plt
    x = np.linspace(-5.0, 5.0, 1000)
    y = np.sin(x)
    plt.show()
    plt.figure()
    plt.plot(x, y)
    Flag question: Question 4
    Question 4 1 pts
    Which module is our standard module for mathematical functions etc?
    Group of answer choices
    pandas
    matplotlib.pyplot
    scipy.stats
    numpy
    Flag question: Question 5
    Question 5 1 pts
    Which of these plots shows the trigonometric polynomials produce with the parameters
    a = 1 , b = 60 , j = 3
    c = 1 , d = 120 , k = 3
    Group of answer choices
    trigon4.png
    trigon2.png
    trigon3.png
    trigon1.png

  • @gamingzone-ge4sw
    @gamingzone-ge4sw ปีที่แล้ว +1

    My bad i came to this video

  • @sayrishverma1391
    @sayrishverma1391 ปีที่แล้ว +1

    Sir your level of teaching is too worst 😢