Tutorial 8- Numpy Array Tutorial In Hindi

  Рет қаралды 74,599

Krish Naik Hindi

Krish Naik Hindi

Күн бұрын

Пікірлер: 107
@dexxxxxxxx
@dexxxxxxxx Жыл бұрын
I was learning from your videos which you have uploaded 3 years ago but this playlist is more properly explained and arranged. Thank you Krish Bhai...
@bhushan321
@bhushan321 7 ай бұрын
16:29 To retrieve 1st and last column. arr[:,[0,-1]]. [:, to select all rows [0,-1] to select 0th and last column.
@aarizmansuri9482
@aarizmansuri9482 Жыл бұрын
AlhamduLillah sir aapjo padhate ho sidhe dimag or dill me fixed ho jatahai ❤
@AdityaChanda-
@AdityaChanda- 2 ай бұрын
chal nikal
@ArchanaShakya-zu4hd
@ArchanaShakya-zu4hd 3 ай бұрын
Numpy is a powerful library for array processing in Python, important for data analysis and exploration. 03:12 ✦ Convert a list into a NumPy array using np.array() function 06:24 ✦ Numpy arrays can be combined to form multi-dimensional arrays 09:36 ✦ Indexing in Numpy arrays allows for selecting specific elements or ranges of elements. 12:48 ✦ Explaining how to access specific rows and columns in a numpy array 16:00 ✦ Pick up specific values from a numpy array using row and column indices. 19:12 ✦ Creating and reshaping arrays in NumPy 22:24 ✦ Numpy array can be initialized with zeros, random numbers, or from a normal distribution. 25:36
@mannatmannat9205
@mannatmannat9205 Жыл бұрын
Thank you 😊 sir 🙏 your teaching way is amazing
@pankajverma4362
@pankajverma4362 4 күн бұрын
Thanks for amazing videos 🎉
@tuttejkumar6713
@tuttejkumar6713 2 жыл бұрын
very nicely explained sir,thanks.
@heyOrca2711
@heyOrca2711 Жыл бұрын
Thank you Krish Sir for this wonderfull class
@akhileshgangwar6668
@akhileshgangwar6668 2 жыл бұрын
Best platform for learning 👏🏻
@garimagupta7277
@garimagupta7277 3 ай бұрын
Thank you, sir for such an informative video, I'm learning from your videos. The answer would be arr1[:, ::4].
@ayat5483
@ayat5483 8 ай бұрын
thank you. so far the best video
@sibasishmishra2684
@sibasishmishra2684 2 жыл бұрын
Thank you for all the learning videos...
@dineshch7094
@dineshch7094 Жыл бұрын
Hi sir...how can I activate this help popup at 3:34 which provides syntax and more information?
@thatawkwardguy29
@thatawkwardguy29 Жыл бұрын
Shift + Tab
@bp2807
@bp2807 2 жыл бұрын
Krish thank for all the good work. Kindly upload more SQL videos
@rockfighter9974
@rockfighter9974 2 жыл бұрын
Thank you so much for this video
@dynamicacceleration
@dynamicacceleration Жыл бұрын
nice video sir ji
@GhulamRaza-u5k
@GhulamRaza-u5k 6 ай бұрын
TO retrive first column and last colum arr1[0:] to retrive all the rows then arr1[0:,[0,4]] here [0,4]] 0 indicates that i am taking first column and 4 indicate that i am taking last column i can also retrive that by simply writing [0,-1] if i dont know the last column index number
@shwetaverma7048
@shwetaverma7048 Жыл бұрын
more usefull lecture sir ji
@snehyadav577
@snehyadav577 2 жыл бұрын
Sir please make a hindi vedio for flask your all vedios are very helpful
@dilipinamdar5523
@dilipinamdar5523 2 жыл бұрын
very nicely explained !!
@ajay2347
@ajay2347 2 жыл бұрын
thank you sir, for making tutorial in hindi The Ans: arr1[:,::3]
@Krishna_sharma360
@Krishna_sharma360 11 ай бұрын
bro last mei 4 aayega
@billu_bodmash
@billu_bodmash 3 ай бұрын
so for rows counting starts from 0 but for column it starts for 1??
@xtravengersgaming
@xtravengersgaming 3 ай бұрын
no, index wise both starts from 0
@tejaskamble8731
@tejaskamble8731 Жыл бұрын
Thanks sir ❤
@soumenkhanra8982
@soumenkhanra8982 Жыл бұрын
Retrieve first and last column data arr1[ : , [0, -1] ]
@shyamjeetksharma
@shyamjeetksharma Жыл бұрын
Good code appreciation - please explain more
@k-concepts1574
@k-concepts1574 Жыл бұрын
Very nice
@rishikesh831
@rishikesh831 2 жыл бұрын
what is the use of creating these arrays??
@rajshedge
@rajshedge 2 жыл бұрын
arr1[: , [0,4]] is answer for fetching first and last column
@faizanahmed7752
@faizanahmed7752 Жыл бұрын
Bhai explain
@pankajjoshi8292
@pankajjoshi8292 Жыл бұрын
how to extract first and last row. thank u
@rajshedge
@rajshedge Жыл бұрын
@@pankajjoshi8292 No problem 😊
@syedabulfaiz-h5h
@syedabulfaiz-h5h 9 ай бұрын
Thanks
@vikasmukherjee
@vikasmukherjee Жыл бұрын
Dear Sir, Aap likhne (pencil) ke lie konsa software use kie?
@Vptheboss
@Vptheboss 5 ай бұрын
to fetch 1st and last column arr1[:,::4], output: array([[1, 5], [2, 6], [3, 7]])
@RolexRk111
@RolexRk111 Жыл бұрын
impressed
@onkarsamel8495
@onkarsamel8495 10 ай бұрын
sir, please create a playlist of MLOPS also.
@RayanKhan-q5t2m
@RayanKhan-q5t2m 4 ай бұрын
l1=[1,2,3,4,5] l2=[2,3,4,5,6] l3=[3,4,5,6,7] arr2=np.array([l1,l2,l3]) arr2 arr2[0:,0::4]
@RohanGohil-gr7wo
@RohanGohil-gr7wo Жыл бұрын
Krish Naik OP
@gautammukherjee9252
@gautammukherjee9252 5 ай бұрын
Please make video on other library
@durgakumar6676
@durgakumar6676 5 ай бұрын
16:30 assignment code: arr1[:,::4]
@newideabrightfuture2795
@newideabrightfuture2795 2 жыл бұрын
Please upload SQL video sir
@khushbumangal9235
@khushbumangal9235 11 ай бұрын
Hi @Kirsh sir, answer for the assignment is arr1[:,::4]. Can you pleas confirm?
@BinduMahapatra-sq6vh
@BinduMahapatra-sq6vh 5 ай бұрын
print(arr1[:,[0,-1]]) also will work
@Coden69
@Coden69 2 жыл бұрын
thanks
@utkarshchimote1040
@utkarshchimote1040 Жыл бұрын
Sir numpy ki playlist nhi hai kya
@vipingupta9540
@vipingupta9540 2 жыл бұрын
Make a video on functions..
@utkarshchimote1040
@utkarshchimote1040 Жыл бұрын
Sir , can you make data mining playlist in hindi
@delhiwarriorgaming2882
@delhiwarriorgaming2882 Жыл бұрын
answer of question at 16:44 is : arr1[ 0 : , : : 4]
@shivvu4461
@shivvu4461 Жыл бұрын
bro how? Everyone is saying this answer but I am getting error. can you provide me full code ?
@adityasingh017
@adityasingh017 9 ай бұрын
16:33, Here is my code to achive the first and last coloumn elements arr1[:,::arr1.shape[-1]-1] OR simply x[:,::4]
@shashibhoi
@shashibhoi 2 жыл бұрын
Answer for select first and last column is = df [["c1","c4"]]
@ShahriyarHayatKhan
@ShahriyarHayatKhan 10 ай бұрын
Studying before exam! 😌😂
@MDTARIF-pj7bc
@MDTARIF-pj7bc 4 ай бұрын
The Answer of the homework: **Method 1** my_arr_1[0:,[0,4]] **Method 2** my_arr_1[0:,[0,-1]]
@animesh_6969
@animesh_6969 Жыл бұрын
Aree(array) sir ty
@Any_shorts1683
@Any_shorts1683 7 ай бұрын
assignment Time -16:00 arr[:,0::3]
@chitranchakraborty7900
@chitranchakraborty7900 Жыл бұрын
13:00
@IamImranMalik
@IamImranMalik 2 жыл бұрын
arr1[:,::4] Assignment done
@sushant.kk1
@sushant.kk1 11 ай бұрын
Bro can you explain
@Global.Nation
@Global.Nation 2 жыл бұрын
Numpy sikhne bas ek video kafi hai sir?
@aishascreation1689
@aishascreation1689 2 жыл бұрын
3d dimension batao kaise banaye
@Immpraveen
@Immpraveen 2 жыл бұрын
print(array[:, ::-4])
@amolghongade19_07
@amolghongade19_07 2 жыл бұрын
SQL video in Hindi
@amolghongade19_07
@amolghongade19_07 2 жыл бұрын
For data science
@Dhanmeherabhay
@Dhanmeherabhay Жыл бұрын
Arr1[:,::4] and Arr1[:,[0,4]]
@kartikking7
@kartikking7 7 ай бұрын
print(arr[:,0::4])
@SHYAMKumar-wp5cu
@SHYAMKumar-wp5cu Жыл бұрын
Assignment = arr1[:,: :4].
@amolghongade19_07
@amolghongade19_07 2 жыл бұрын
Hi sir
@Anmol.singh.10
@Anmol.singh.10 11 ай бұрын
Answer: [ : , :: -4]
@AyushTamang-vt6qj
@AyushTamang-vt6qj 3 ай бұрын
#Assignment arr1[:,::4]
@Sigma-lr9jk
@Sigma-lr9jk 2 ай бұрын
no offence but gate smasher explained this topic better
@ayubarif7428
@ayubarif7428 Жыл бұрын
arr1[0:,::4] answer
@masterkumar1899
@masterkumar1899 7 ай бұрын
Print(arr1[0:,::3])
@Shashank_Masurkar
@Shashank_Masurkar Жыл бұрын
ANS: arr1[:,::4]
@Lovely_Pihu
@Lovely_Pihu 2 жыл бұрын
another way arr1[:,(0,4)]
@0rajan1
@0rajan1 2 жыл бұрын
@sumitsarkar6747
@sumitsarkar6747 5 ай бұрын
16.35 arr1[ : , : : 3]
@yogeshmagarde4407
@yogeshmagarde4407 2 жыл бұрын
array[:,::4]
@AbhishekRajput-bc6ux
@AbhishekRajput-bc6ux 5 ай бұрын
arr1[0:3,::4]
@LearnwithNaviOfficial
@LearnwithNaviOfficial 11 ай бұрын
arr [ :, 0:5:4]
@BlackRock_07
@BlackRock_07 Жыл бұрын
Itne data science ke gyani bante ho pr ye array me homogeneous values pe example de ke smjaya bhi nhi barbat 25 min ka video
@sahilmukkawar4606
@sahilmukkawar4606 3 ай бұрын
Tumne kaha se kara bhai 👀
@hari_1357
@hari_1357 2 жыл бұрын
Thanks
ВЛОГ ДИАНА В ТУРЦИИ
1:31:22
Lady Diana VLOG
Рет қаралды 1,2 МЛН
Numpy Tutorial in Hindi
56:18
CodeWithHarry
Рет қаралды 1 МЛН
Learn NUMPY in 5 minutes - BEST Python Library!
13:38
Python Programmer
Рет қаралды 898 М.
NumPy vs Pandas
5:55
IBM Technology
Рет қаралды 186 М.
Learn Coding & Get a Job (in 2025) 🔥
16:54
CodeWithHarry
Рет қаралды 798 М.
Python NumPy Tutorial for Beginners
58:10
freeCodeCamp.org
Рет қаралды 1,7 МЛН