▶ Watch Entire Numpy Playlist ✅ Subscribe To My KZbin Channel: bit.ly/3Q7frEH bit.ly/2IGzvOR ▶ See More At: ✅ Join My Facebook Group: Codemy.com bit.ly/2GFmOBz ▶ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt! Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN ▶ Get The Code: bit.ly/3mp2qJ3
@chitturipraveenchow4 күн бұрын
quite easy to understand the slicing. You made my life much simpler for this topic. Many blogs confused this part.
@kevindelosreyes7970 Жыл бұрын
Happy to have found your channel. Thanks for sharing this!
@Codemycom Жыл бұрын
Welcome!
@Tristaxx11 ай бұрын
this is literally one of the best courses (arguably the best one) for numpy
@Codemycom11 ай бұрын
Glad you're enjoying it!
@Omsip1236 ай бұрын
6:58 IMO these are not the two dimensions, but two entries in a dimension. The two dimensions are given by the brackets. Either way, good video, thanks.
@benedettap.440712 күн бұрын
Thank you!
@nachodorado87342 жыл бұрын
good job mate!! regards from spain
@Codemycom2 жыл бұрын
Thanks!
@restphilanthropy2 жыл бұрын
100k+ subs???? Amazing 🤩
@Codemycom2 жыл бұрын
Yeah, a few months ago
@RuojiWang3 ай бұрын
Good course. Simple but comprehensive. By the way, I'm not native English speaker. I REALLY want to know what you say at the beginning of vedio.
@mayanksrivastava75407 ай бұрын
great teaching sir , but i have to say , the way you start the video with that hand gesture XD
@Codemycom7 ай бұрын
lol
@DhirajDevarapaga7 ай бұрын
dude you are amazing but only suggestion i wish you used jupyter notebook instead of sublime so that we could get the outcome on the go.
@meetpatel55377 күн бұрын
Mast
@navronaman Жыл бұрын
Thank you so much!
@Codemycom Жыл бұрын
Very welcome!
@latasuthar79046 ай бұрын
Sir is it fine if i code in virtual studio code ? And this much numpy is enough for data science?
@Codemycom6 ай бұрын
Sure, you can use vscode if you like. But why?
@grahaml60722 ай бұрын
@@Codemycombecause it’s better than sublime 😂
@austincharles1952 жыл бұрын
i really like this
@Codemycom2 жыл бұрын
Glad to hear it!
@andresgiuffre6810 Жыл бұрын
Just curious, is there a way to slice one portion of a dimension and another different one of the other in a single line of code? I mean, if you want to get items (index) 0, 1, 2 from the 1st dimension and 2, 3, 4 from the 2nd one. I've tried a couple of things but it doesn't seem to be working.
@yaemiko-s4b8 ай бұрын
To extract specific items from both dimensions of a 2D NumPy array, you can use advanced indexing, which allows you to specify the exact indices you want to select. If you want to get items at indices 0, 1, and 2 from the first dimension (rows) and indices 2, 3, and 4 from the second dimension (columns).you can write- rows = [0, 1, 2] cols = [2, 3, 4] subarray = a[np.ix_(rows, cols)] print(subarray)
@Game_Studio15 Жыл бұрын
at my place the error "np is not defined" appears, how do I solve it??
@Codemycom Жыл бұрын
define np as the video does
@jiniapatra1294 Жыл бұрын
import numpy as np
@Codemycom Жыл бұрын
@@jiniapatra1294 yep
@pm_chohan Жыл бұрын
Everything is amazing but why sublime text?
@Codemycom Жыл бұрын
Because it's simple and it's the most used coding text editor in the world. Why not?
@grahaml60722 ай бұрын
@@Codemycomnot according to the stack overflow developer survey it’s not
@zhongcaing19892 ай бұрын
i see u going for the Walter White look
@francescot.neruda68552 жыл бұрын
💪🏻💪🏻
@Codemycom2 жыл бұрын
:-)
@Sibusiso_Myeza8 ай бұрын
print("you are the best") output:???
@Codemycom8 ай бұрын
Ha thanks!
@santhoshmrs624411 ай бұрын
Background them use classic
@Codemycom11 ай бұрын
I don't know what those words mean
@bubblenugget9916 Жыл бұрын
heisenberg
@Codemycom Жыл бұрын
lol
@EddTally4 ай бұрын
First time I've heard one-ith and five-ith instead of 1st and 5th 🤣🤣 edit: It's to make it obvious that the array starts at zero... not sure I can handle it.
@MrHaykav Жыл бұрын
(y) 👍
@Codemycom Жыл бұрын
👍
@siavashsabet24628 ай бұрын
Good job man, but what in gods name is “fiveth”, its “fifth”. 😕
@Codemycom8 ай бұрын
It's helpful to understand that arrays start at zero...the zero'ith....followed by, followed by..etc. Don't be a grammar nazi over it.