Тёмный

Numpy Tutorial in Hindi 

CodeWithHarry
Подписаться 7 млн
Просмотров 926 тыс.
50% 1

Опубликовано:

 

28 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 700   
@CodeWithHarry
@CodeWithHarry 5 лет назад
Like karna mat bhoolna :) Pandas In one video is coming soon.. Subscribe and hit the bell icon to stay tuned!
@safety1610
@safety1610 5 лет назад
QNA
@rupakbarman885
@rupakbarman885 5 лет назад
@@safety1610 Bro You are right.
@Coding_Asmr_PraDev
@Coding_Asmr_PraDev 5 лет назад
QnA
@arpitagec9
@arpitagec9 5 лет назад
I can't say how much I am grateful to you after this video. Thanks a lot, bro! 😊 Please cover other important libraries like pandas,matplotlib,scikit-learn,scipy etc. After this I would request you to deep dive into statistics part pls, else the knowledge gained through data science would be incomplete. Looking forward to your upcoming videos 👍.☺️
@anubhavgupta6331
@anubhavgupta6331 4 года назад
Bhai please make complete tutorial of matplotlib including seaborn please.....
@sakshamkumar4036
@sakshamkumar4036 3 года назад
44:42 --> 'argsort()' may be used to find the index of all the elements of a sorted array of any dimension. for a 2d array, we have to specify the axis whose elements we want to sort
@suryansh12
@suryansh12 2 месяца назад
no it's not necessary to specify axis for a 2d array when using argsoft()
@payelpal8775
@payelpal8775 2 года назад
44:56 Function: myar.argsort(axis = 1) Display: array ([[0, 1, 2], [0, 1, 2], [2, 1, 0]], dtype=int64) Functionality: it will display the indexes of the values from the original array and sort the values
@rajadityasureshbhai1892
@rajadityasureshbhai1892 3 года назад
44:54 We want an argsort of axis 1, so as we all know that axis one goes from left to right hence when the first whole column will be an axis of when axis 1 is concerned, hence if we try to sort it we will come to know that all the elements are already sorted, so it will yield and answer as [0,1,2].
@nandankumar3496
@nandankumar3496 3 года назад
45:13 arg.sort() it works by default rows wise and if we give it axis =0 . then it work vertically every column and if we give axis = 0 then it work horizantally
@mitalisingh7239
@mitalisingh7239 3 года назад
Argsort arranges the indices of elements in increasing order of element value. Depending on the axis, it works like...for axis 0 it sorts every column individually and for axis 1 it sorts the rows individually.
@RaviPal-mo3nc
@RaviPal-mo3nc 3 года назад
44:58 in axis = 0 it tells us where the required elements are w.r.t vertical axis for them to be sorted in ascending order vertically In axis = 1 it is considered horizontally
@heirofsam
@heirofsam Год назад
There are 6 general mechanisms for creating arrays: -Conversion from other Python structures (i.e. lists and tuples) -Intrinsic NumPy array creation functions (e.g. arange, ones, zeros, etc.) -Replicating, joining, or mutating existing arrays -Reading arrays from disk, either from standard or custom formats -Creating arrays from raw bytes through the use of strings or buffers -Use of special library functions (e.g., random)
@utkarshbharti7274
@utkarshbharti7274 Год назад
there are only 5
@gayathrikannikanti5185
@gayathrikannikanti5185 Год назад
Based on latest info it is 6 @@utkarshbharti7274
@zahoorahmedsayyad
@zahoorahmedsayyad 3 года назад
44:30 As you have given (axis=1) as argument for argsort it will sort elements with respect to in horizontal axis.
@TGajanan
@TGajanan Год назад
Hey, thank you, Harry, I am started following your videos from the last 3-4 months What a content you created for free of cost you deserve a big Applause 👏 👏
@factsyard1087
@factsyard1087 5 лет назад
Sir please Do QNA 🙏🙏🙏
@mohitthakur738
@mohitthakur738 3 года назад
Brother you're great. You're helping many who can't learn these concept easily. I watched your both videos on numpy and pandas, again thanks a ton. Harry 😊
@arunkumar-ws1pk
@arunkumar-ws1pk 2 года назад
Me toooo bhai
@kamranhossain9849
@kamranhossain9849 4 года назад
Argsort(axis=0)..this provide the sorted position of the value of axis 0...like if axis 0 has some numbers like 4,2,7..then argsort will provide the following position 1,0,2..
@irfanmohammad2132
@irfanmohammad2132 Год назад
ar.argsort(axis=1) gives the given 2D array in ascending order for all rows. [ [1,2,3] , [4,5,6] , [0,1,7] ]
@pradhyumjaiswal1169
@pradhyumjaiswal1169 2 года назад
ar.argsort(axis=0) This will give us the index to sort the array column-wise, vertically.
@pratikkawalgikar4839
@pratikkawalgikar4839 4 года назад
Hi Harry, Your videos are too good and easy to understand. Thanks for uploading the videos. I have one query. How can we download/extract the output data from Jupyter Notebook?
@ashirali3485
@ashirali3485 Год назад
44:42 -> what argsort() does is it returns the indices of the array's elements in the ascending order depending upon the axis that has been assigned to it.
@eternalxyz123
@eternalxyz123 2 года назад
"hum ko sirf numpy hi nahi padhna hai , besically hum ko data science karna hai " ------love this line
@ozge-yagizfan
@ozge-yagizfan Год назад
I am here now after 100 days of python course and now i move further to machine learning
@SaritaSingh-rb4sq
@SaritaSingh-rb4sq 3 месяца назад
Argsort is used to arrange elements from ascending to descending order in 2D array and when axis = 0 , it is according to vertical direction and when axis = 1,it is according to horizontal direction.
@rohanjaiswal64
@rohanjaiswal64 3 года назад
GREAT WORK
@monalisabanra2733
@monalisabanra2733 2 года назад
ar.argsort(axis=1) it is showing the indices of the horizontal elements (row elements) according to which if we would have arranged the elements we would have got a sorted array.
@akashaggarwal6397
@akashaggarwal6397 2 года назад
ar.argsort(axis=1) will return a matrix of same order with sorter indices on axis one. This will tell us the indices of min to max element of the row for example; [ [4,5,6], [8,22,1], [100,23,1] ] will result in [[0,1,2], [1,2,0], [2,1,0]]
@kavyaHPatwardhan
@kavyaHPatwardhan Год назад
Hi, your vedio's are leaner friendly, but if you could prounce numerical numbers in English,then its more convenient for Non-hindi students,great going!
@crickethighlights4416
@crickethighlights4416 5 лет назад
QNA karo naa bro
@saurabhagarwal686
@saurabhagarwal686 2 года назад
here axis =0 means move along the columns and now elements gets sorted according to indexes along columns and corresponding to maximum value in column 1 index will come firsst.
@bishalpoudel3586
@bishalpoudel3586 2 года назад
44: 56 argsort -> return the index of element that should be for having the items in ascending order. suppose argsort(axis=1) , now it will see the index of items in the axis 1 i.e row ( because axis 0 is column and axis 1 is column ) so that we will get the elements of row in ascending order
@NishantKumar-jq9nz
@NishantKumar-jq9nz Год назад
Thankyou so much Harry Bhaiya, ye video mere liye kaffi helpful thi😍😍😍😍
@ArmaanHussainYT
@ArmaanHussainYT Год назад
Harry Bhai Source code ya notes mil jaate to aur bhi jyada mza aa jaata
@Rohit_Rai901
@Rohit_Rai901 4 месяца назад
07:03 Numpy gives efficient storage and ready-made functions for data analysis. 14:06 Using Jupyter Notebook and Numpy 21:09 Learned about creating numpy arrays using python objects 28:12 Creating numpy arrays from Python structures and using intrinsic numpy array creation objects 35:15 Numpy array creation methods and reshaping 42:18 Understanding numpy arrays and axis 49:21 Using arg sort and axis to sort 2D arrays 56:18 NumPy arrays take less space compared to Python arrays.
@salimshakeel8961
@salimshakeel8961 6 месяцев назад
[axis=1] , Its give the index of horizontally row of matrix on which it will sort
@codeblooded9878
@codeblooded9878 4 года назад
dear sir, this is only one video I proper clear numpy thanks sir for your videos and you are the best teacher on youtube.
@bhaiyajimaharaj4813
@bhaiyajimaharaj4813 5 лет назад
thank you harry bhai mene aapke python ke pure 123 video dheke and numpy bhi appne bahut achi and simple tareke se sikayeye hai. your way of teaching, so laveable :)
@rubayetalam8759
@rubayetalam8759 3 года назад
please make a one video course- "data science in python"
@MrKB_SSJ2
@MrKB_SSJ2 2 года назад
Thank you very much for this course!!!
@wisher18
@wisher18 2 года назад
thank u so much harry bhai... it means a lot...
@TheTraderRam
@TheTraderRam 4 года назад
Bhai Thank You Thank You . Please make a series on chatbot with AI and Deep learning.............
@SagarKumar-wp7ld
@SagarKumar-wp7ld 10 дней назад
28:30 Running np.empty(dimension) after np.zeros(dimension) gives an uninitialized array with 0.0 values, I am not sure if everyone facing the same.
@VS_Solanki
@VS_Solanki Год назад
Thank you गुरु जी❤
@siddhubhai2508
@siddhubhai2508 2 месяца назад
Proud to be an Indian!!!
@SatyamRocker
@SatyamRocker 4 месяца назад
Your teaching style is too good thus all beginner type stude prefer you ❤ Love from Satyam Rocker
@msraji1
@msraji1 Год назад
thank u so much for teaching in a layman language
@aalamgeerrana4539
@aalamgeerrana4539 5 лет назад
When you did sum(axis=0) it is adding the value vertically, but in graphic design you said that axis 0 is for rows and axis 1 for columns. Little confusion.
@monarchparmar3593
@monarchparmar3593 5 лет назад
axis 0 spans rows. So if you sum axis=0, it will sum all elements from row 0 to last row in every column
@shubhamaggarwal8957
@shubhamaggarwal8957 5 лет назад
In data analysis sometimes ram ka issues aata hai toh ek video buffering par bi bana do coz RU-vid par koi accha tutorial nai hai uspe practical usage ke saath
@latasuthar7904
@latasuthar7904 2 месяца назад
Please tell me for data science this much numpy is enough?
@moko6917
@moko6917 2 года назад
44:51 argsort orders numbers in ascending order for axis 1 which is rows
@krishnabhadhouria
@krishnabhadhouria 6 месяцев назад
you have cleared all my doubts regarding numpy. thankyou!
@shaikusman536
@shaikusman536 Год назад
You are just Amazing Harry........Thanks aton for teaching Numpy in simplest way possible......Learned a lot on Numpy.......Thanks bro
@wahabsonu7849
@wahabsonu7849 Год назад
Arg is basically connected to index by argsort we can known the right index which have the best value according to sorting
@ritikkohad5045
@ritikkohad5045 Год назад
Great video. For ppl who know how to install jupyter and basics of it can skip the video to 15:00
@puneetsharmavlogs4787
@puneetsharmavlogs4787 2 года назад
Thank you harry bro, for such a explanatory tutorial, please publish more content on Data science for self learning
@meenakshimalik8391
@meenakshimalik8391 4 года назад
Argsort gives us array which is a sorted argument
@TheNadeem11aziz
@TheNadeem11aziz Год назад
You are the badshah of coding... resemblance to The rapper
@kaushalsahu7243
@kaushalsahu7243 3 года назад
wha bhaia maza aa gaya numpy sekh ke apke sath....
@namanmamodia5731
@namanmamodia5731 4 года назад
Sir Thankyou very much your videos helps so much to learn python.Numpy library aache se understand ho gayi he.
@sarthak_121
@sarthak_121 Год назад
Bhai mza aa gya, itna acha sa samaj aa gya, kal viva ha 😭🙏
@prashantf43
@prashantf43 2 года назад
Thank you yar harry bhai aap bahut achchha padhate ho❤️
@hassanazam-h9i
@hassanazam-h9i Год назад
you make python easy for mee. please can you tell me how copy codes elements and paste to another codes ?
@pratikshadewangan9998
@pratikshadewangan9998 3 года назад
Numpy in 50 mins Thanks Harry bhai Kl mera interview h i was struggling for that Ab mai revise kr skti hu
@safety1610
@safety1610 5 лет назад
please make QNA and take my question
@AMITSINGH-im3xi
@AMITSINGH-im3xi 3 года назад
Sir sahi sequence bta doo codeing sikhny k liye like may , python,flask, pandas, django & php sikhna chahta hu..to kya chiz kab kru vo bta do...??? Sir ya ispy video bna doo
@EXCELwaleBhaiyyaa
@EXCELwaleBhaiyyaa 6 месяцев назад
Superb introduction to NumPy topic... Thanks for the tutorial..! :)
@shekharkhadka7
@shekharkhadka7 5 лет назад
Excellent bhai keep un uploading more on others python library,like pillow,sklearn ,etc
@ruchiagarwal4943
@ruchiagarwal4943 4 года назад
yes
@HeartOfTech-cw5kz
@HeartOfTech-cw5kz Год назад
Thank you Harry Bhai 😊😊🤍🤍🤍🤍 You are the best for me.✨✨✨
@keshavbainsla3435
@keshavbainsla3435 Год назад
It gives index values after cross checking with the elements throughout the rows and columns
@keshavbainsla3435
@keshavbainsla3435 Год назад
At 45:10
@Helly04
@Helly04 Год назад
#9th July 2023 Thank you Harry Bhai I have completed ❤🎉
@RizwanAli-dv7md
@RizwanAli-dv7md 3 года назад
Harry Bhai thanks alot. Ur videos helped me alot, Dil se sukriya❤️
@where_is_the_manager
@where_is_the_manager 2 года назад
thanks a ton for this video brother.. but im facing a problem in pip and numpy installation..its showing error in both
@nipunjain1142
@nipunjain1142 5 лет назад
Harry Bhai Angularjs in one video bnaadijiye aur please usme yeah bhi btana ki hum usse python Django see kaise add krrskte hai.......
@tarunbhatia8652
@tarunbhatia8652 4 года назад
Very well explained Harry bhai. You never disappoint us.
@skpandeyg
@skpandeyg 5 лет назад
44:47 ka answer hae ki argsort sabse chote element ka index return karta hae
@Numbers0
@Numbers0 3 года назад
thx
@shahzan525
@shahzan525 5 лет назад
Sir.....your videos are best... python with data structure pr videos bnao...
@umangjhawar9450
@umangjhawar9450 2 года назад
agar empty array create karke baadme usme indexing se change hi karna hai, tho koi bhi random array banake bhi tho kar sakte hai,kyu ye empty ka syntax seekhe?
@jitusuthar8397
@jitusuthar8397 3 года назад
Sir , is this video is enough for class 11 IP ?? The name of chapter is Introduction to NumPy
@AnimeshSinghIITM
@AnimeshSinghIITM 3 года назад
Harry bhai dil se THANK YOU!!!
@lowcodenocode825
@lowcodenocode825 3 года назад
Harry bhai in mathematics single row matrix ka tranpose single coloumn hota hai lekin hya nhi hora exaple :arr = np.array[2,4,5,6,] arr.T iska result same arrra hai please reply
@engineerbhai7642
@engineerbhai7642 5 лет назад
You are great. Bestcoder in you tube
@NEILJOHNRA
@NEILJOHNRA 2 года назад
If u paid real attention, then u know that "Axis ko Chaturaai ke saath istemaal" karna padhta hai..... 44:10
@mr.hetalvora3895
@mr.hetalvora3895 4 года назад
44.29 arr=[1,2,3 4,5,6 7,1,0] answer is sort arr for max(axis (1)) =[0,1,2 0,1,2 2,1,0]
@YashDEVELOPER12
@YashDEVELOPER12 2 года назад
Thanks alot brother.. god bless you
@gauravrawat8801
@gauravrawat8801 5 лет назад
After completed of c course please make a c project for beginners.
@mounikasettigari9741
@mounikasettigari9741 3 года назад
Thank you soo much harry!!! Big hug!🤗❤️
@mrnexis4940
@mrnexis4940 9 месяцев назад
For those who can't run jupyter note book, try this instead: pip install jupyterlab pip install notebook jupyter notebook (Run each line separately)
@raodyc
@raodyc 4 года назад
Multiplication in matrix is done as row to column Not row to row I don't know how at 47:30 around you multiplyed 2 matrix as row*row That's a wrong answer shown by jupyter notebook
@non-sense4618
@non-sense4618 4 года назад
Actually matrix addition and subtraction is same as array addition and Subtraction. But the mulplication is not same. Similarly matrix division is not defined but array division is quite possible and simple. It is just like array multiplication (element wise division)
@MA-or8ql
@MA-or8ql Год назад
This video is enough for data scientist??
@shayanali5522
@shayanali5522 2 года назад
harry bai numpy array k baray ma koi vedio banao is vedio ma kafi kuch miss kia ao na jasay one dimention array kia hoti 2 dimention etc ya koi playlist banao plzzzz
@yashsahu7645
@yashsahu7645 4 месяца назад
Quiz Answer: axis =0 means we are talking about column output of ar.argsort(asix=0) is array([[0, 2, 2], [1, 0, 0], [2, 1, 1]]) for column first sorting be like 1
@drkmgoswami3042
@drkmgoswami3042 4 года назад
Hi I am Abhay I am learning to make game with unity but I don't know how to code C# please make full course video Because no one can teach C# better than you please help Harry brother 🙏
@drkmgoswami3042
@drkmgoswami3042 4 года назад
Please
@Parcha24
@Parcha24 2 года назад
Please make video on neural network with numpy
@shivajipatil939
@shivajipatil939 5 лет назад
Harry Bhai Jindaabaad 😍😍😍 always Follow you
@atifsalam6802
@atifsalam6802 Год назад
Great Learning experience
@sdansari7541
@sdansari7541 Год назад
Wonderful Explanation 🔥👏💖
@Forever._.curious..
@Forever._.curious.. 2 года назад
Your efforts worths it❤️ 👐🏻👐🏻 thank yuuu
@akshtasoundade
@akshtasoundade Месяц назад
Google colab Mai numpy program kya tu chalta hai na
@farmingclass0001
@farmingclass0001 3 года назад
please make a video on tensorflow ,deeplearning full playlist and image predications project please sir
@satyamgour9461
@satyamgour9461 Год назад
Thanks Harry bhaiya 🙏🙏
@anubhav0355
@anubhav0355 3 года назад
What a great tutorial. Amazing work!!
@tefitstu-te1988
@tefitstu-te1988 5 лет назад
Sir what is your age ? and when you start learning code ?sir please reply
@rupakbarman885
@rupakbarman885 5 лет назад
I thing 24
@Porkistan_TheBaggerOfTheWorld
@Porkistan_TheBaggerOfTheWorld 5 лет назад
@@rupakbarman885bro 26 haa
@tefitstu-te1988
@tefitstu-te1988 5 лет назад
bro tum lok sai nahi pucha huu.
@hikikomori9387
@hikikomori9387 5 лет назад
insta pe ja...bio mil jayega...UP ka launda hai...kharagpur iit se integrated course kiya...globe trotter hai...bas
@ruchiagarwal4943
@ruchiagarwal4943 4 года назад
he is 24 as of 2020 - CONFIRMED!
@nishantbansal82
@nishantbansal82 3 года назад
Excellent way to explain.
@sagarmalviya8038
@sagarmalviya8038 2 года назад
Online cls se accha yha smjh aata h
Далее
Python Pandas Tutorial in Hindi
1:05:24
Просмотров 1,1 млн
Se las dejo ahí.
00:10
Просмотров 851 тыс.
Tutorial 8- Numpy Array Tutorial In Hindi
25:36
Просмотров 64 тыс.
Python NumPy Tutorial for Beginners
58:10
Просмотров 1,5 млн
5 Good Python Habits
17:35
Просмотров 541 тыс.
Learn NUMPY in 5 minutes - BEST Python Library!
13:38
Просмотров 852 тыс.
NumPy vs Pandas
5:55
Просмотров 159 тыс.
Fastest way to learn Data Structures and Algorithms
8:42