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...
@bhushan3217 ай бұрын
16:29 To retrieve 1st and last column. arr[:,[0,-1]]. [:, to select all rows [0,-1] to select 0th and last column.
@aarizmansuri9482 Жыл бұрын
AlhamduLillah sir aapjo padhate ho sidhe dimag or dill me fixed ho jatahai ❤
@AdityaChanda-2 ай бұрын
chal nikal
@ArchanaShakya-zu4hd3 ай бұрын
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 Жыл бұрын
Thank you 😊 sir 🙏 your teaching way is amazing
@pankajverma43624 күн бұрын
Thanks for amazing videos 🎉
@tuttejkumar67132 жыл бұрын
very nicely explained sir,thanks.
@heyOrca2711 Жыл бұрын
Thank you Krish Sir for this wonderfull class
@akhileshgangwar66682 жыл бұрын
Best platform for learning 👏🏻
@garimagupta72773 ай бұрын
Thank you, sir for such an informative video, I'm learning from your videos. The answer would be arr1[:, ::4].
@ayat54838 ай бұрын
thank you. so far the best video
@sibasishmishra26842 жыл бұрын
Thank you for all the learning videos...
@dineshch7094 Жыл бұрын
Hi sir...how can I activate this help popup at 3:34 which provides syntax and more information?
@thatawkwardguy29 Жыл бұрын
Shift + Tab
@bp28072 жыл бұрын
Krish thank for all the good work. Kindly upload more SQL videos
@rockfighter99742 жыл бұрын
Thank you so much for this video
@dynamicacceleration Жыл бұрын
nice video sir ji
@GhulamRaza-u5k6 ай бұрын
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 Жыл бұрын
more usefull lecture sir ji
@snehyadav5772 жыл бұрын
Sir please make a hindi vedio for flask your all vedios are very helpful
@dilipinamdar55232 жыл бұрын
very nicely explained !!
@ajay23472 жыл бұрын
thank you sir, for making tutorial in hindi The Ans: arr1[:,::3]
@Krishna_sharma36011 ай бұрын
bro last mei 4 aayega
@billu_bodmash3 ай бұрын
so for rows counting starts from 0 but for column it starts for 1??
@xtravengersgaming3 ай бұрын
no, index wise both starts from 0
@tejaskamble8731 Жыл бұрын
Thanks sir ❤
@soumenkhanra8982 Жыл бұрын
Retrieve first and last column data arr1[ : , [0, -1] ]
@shyamjeetksharma Жыл бұрын
Good code appreciation - please explain more
@k-concepts1574 Жыл бұрын
Very nice
@rishikesh8312 жыл бұрын
what is the use of creating these arrays??
@rajshedge2 жыл бұрын
arr1[: , [0,4]] is answer for fetching first and last column
@faizanahmed7752 Жыл бұрын
Bhai explain
@pankajjoshi8292 Жыл бұрын
how to extract first and last row. thank u
@rajshedge Жыл бұрын
@@pankajjoshi8292 No problem 😊
@syedabulfaiz-h5h9 ай бұрын
Thanks
@vikasmukherjee Жыл бұрын
Dear Sir, Aap likhne (pencil) ke lie konsa software use kie?
@Vptheboss5 ай бұрын
to fetch 1st and last column arr1[:,::4], output: array([[1, 5], [2, 6], [3, 7]])