Slicing Numpy Arrays - Numpy For Machine Learning 2

  Рет қаралды 32,547

Codemy.com

Codemy.com

Күн бұрын

Пікірлер: 42
@Codemycom
@Codemycom 2 жыл бұрын
▶ 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
@kevindelosreyes7970
@kevindelosreyes7970 11 ай бұрын
Happy to have found your channel. Thanks for sharing this!
@Codemycom
@Codemycom 11 ай бұрын
Welcome!
@Tristaxx
@Tristaxx 9 ай бұрын
this is literally one of the best courses (arguably the best one) for numpy
@Codemycom
@Codemycom 9 ай бұрын
Glad you're enjoying it!
@RuojiWang
@RuojiWang 20 күн бұрын
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.
@nachodorado8734
@nachodorado8734 2 жыл бұрын
good job mate!! regards from spain
@Codemycom
@Codemycom 2 жыл бұрын
Thanks!
@restphilanthropy
@restphilanthropy 2 жыл бұрын
100k+ subs???? Amazing 🤩
@Codemycom
@Codemycom 2 жыл бұрын
Yeah, a few months ago
@DhirajDevarapaga
@DhirajDevarapaga 5 ай бұрын
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.
@mayanksrivastava7540
@mayanksrivastava7540 5 ай бұрын
great teaching sir , but i have to say , the way you start the video with that hand gesture XD
@Codemycom
@Codemycom 5 ай бұрын
lol
@Omsip123
@Omsip123 3 ай бұрын
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
@navronaman Жыл бұрын
Thank you so much!
@Codemycom
@Codemycom Жыл бұрын
Very welcome!
@austincharles195
@austincharles195 2 жыл бұрын
i really like this
@Codemycom
@Codemycom 2 жыл бұрын
Glad to hear it!
@zhongcaing1989
@zhongcaing1989 9 күн бұрын
i see u going for the Walter White look
@latasuthar7904
@latasuthar7904 4 ай бұрын
Sir is it fine if i code in virtual studio code ? And this much numpy is enough for data science?
@Codemycom
@Codemycom 4 ай бұрын
Sure, you can use vscode if you like. But why?
@pm_chohan
@pm_chohan Жыл бұрын
Everything is amazing but why sublime text?
@Codemycom
@Codemycom Жыл бұрын
Because it's simple and it's the most used coding text editor in the world. Why not?
@andresgiuffre6810
@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-s4b
@yaemiko-s4b 5 ай бұрын
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.neruda6855
@francescot.neruda6855 2 жыл бұрын
💪🏻💪🏻
@Codemycom
@Codemycom 2 жыл бұрын
:-)
@Sibusiso_Myeza
@Sibusiso_Myeza 5 ай бұрын
print("you are the best") output:???
@Codemycom
@Codemycom 5 ай бұрын
Ha thanks!
@Game_Studio15
@Game_Studio15 Жыл бұрын
at my place the error "np is not defined" appears, how do I solve it??
@Codemycom
@Codemycom Жыл бұрын
define np as the video does
@jiniapatra1294
@jiniapatra1294 Жыл бұрын
import numpy as np
@Codemycom
@Codemycom Жыл бұрын
@@jiniapatra1294 yep
@bubblenugget9916
@bubblenugget9916 Жыл бұрын
heisenberg
@Codemycom
@Codemycom Жыл бұрын
lol
@santhoshmrs6244
@santhoshmrs6244 8 ай бұрын
Background them use classic
@Codemycom
@Codemycom 8 ай бұрын
I don't know what those words mean
@EddTally
@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
@MrHaykav Жыл бұрын
(y) 👍
@Codemycom
@Codemycom Жыл бұрын
👍
@siavashsabet2462
@siavashsabet2462 6 ай бұрын
Good job man, but what in gods name is “fiveth”, its “fifth”. 😕
@Codemycom
@Codemycom 6 ай бұрын
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.
Numpy Universal Functions - Numpy For Machine Learning 3
7:49
Codemy.com
Рет қаралды 19 М.
Slicing Operation in NumPy Array | Python Tutorials
11:05
Amulya's Academy
Рет қаралды 51 М.
Trick-or-Treating in a Rush. Part 2
00:37
Daniel LaBelle
Рет қаралды 43 МЛН
😜 #aminkavitaminka #aminokka #аминкавитаминка
00:14
Аминка Витаминка
Рет қаралды 3 МЛН
When mom gets home, but you're in rollerblades.
00:40
Daniel LaBelle
Рет қаралды 141 МЛН
I Turned My Mom into Anxiety Mode! 😆💥 #prank #familyfun #funny
00:32
Intro To Numpy - Numpy For Machine Learning 1
12:31
Codemy.com
Рет қаралды 83 М.
Shape and Reshape Numpy Arrays - Numpy For Machine Learning 5
7:04
Numpy Array Copy Vs View - Numpy For Machine Learning 4
6:35
Codemy.com
Рет қаралды 14 М.
Ultimate Guide to NumPy Arrays - VERY DETAILED TUTORIAL for beginners!
24:23
10 Important Python Concepts In 20 Minutes
18:49
Indently
Рет қаралды 265 М.
If __name__ == "__main__" for Python Developers
8:47
Python Simplified
Рет қаралды 412 М.
5 Good Python Habits
17:35
Indently
Рет қаралды 598 М.
NumPy vs Pandas
5:55
IBM Technology
Рет қаралды 169 М.
Trick-or-Treating in a Rush. Part 2
00:37
Daniel LaBelle
Рет қаралды 43 МЛН