▶ 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
@kevindelosreyes797011 ай бұрын
Happy to have found your channel. Thanks for sharing this!
@Codemycom11 ай бұрын
Welcome!
@Tristaxx9 ай бұрын
this is literally one of the best courses (arguably the best one) for numpy
@Codemycom9 ай бұрын
Glad you're enjoying it!
@RuojiWang20 күн бұрын
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.
@nachodorado87342 жыл бұрын
good job mate!! regards from spain
@Codemycom2 жыл бұрын
Thanks!
@restphilanthropy2 жыл бұрын
100k+ subs???? Amazing 🤩
@Codemycom2 жыл бұрын
Yeah, a few months ago
@DhirajDevarapaga5 ай бұрын
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.
@mayanksrivastava75405 ай бұрын
great teaching sir , but i have to say , the way you start the video with that hand gesture XD
@Codemycom5 ай бұрын
lol
@Omsip1233 ай бұрын
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.
@navronaman Жыл бұрын
Thank you so much!
@Codemycom Жыл бұрын
Very welcome!
@austincharles1952 жыл бұрын
i really like this
@Codemycom2 жыл бұрын
Glad to hear it!
@zhongcaing19899 күн бұрын
i see u going for the Walter White look
@latasuthar79044 ай бұрын
Sir is it fine if i code in virtual studio code ? And this much numpy is enough for data science?
@Codemycom4 ай бұрын
Sure, you can use vscode if you like. But why?
@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?
@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-s4b5 ай бұрын
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)
@francescot.neruda68552 жыл бұрын
💪🏻💪🏻
@Codemycom2 жыл бұрын
:-)
@Sibusiso_Myeza5 ай бұрын
print("you are the best") output:???
@Codemycom5 ай бұрын
Ha thanks!
@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
@bubblenugget9916 Жыл бұрын
heisenberg
@Codemycom Жыл бұрын
lol
@santhoshmrs62448 ай бұрын
Background them use classic
@Codemycom8 ай бұрын
I don't know what those words mean
@EddTallyАй бұрын
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 Жыл бұрын
👍
@siavashsabet24626 ай бұрын
Good job man, but what in gods name is “fiveth”, its “fifth”. 😕
@Codemycom6 ай бұрын
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.