numpy tutorial - introduction | numpy array vs python list

numpy tutorial - introduction | numpy array vs python list

codebasics

7 лет назад

305,668 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@surajpanigrahi4275
@surajpanigrahi4275 - 31.03.2023 15:16

Sir, I am new to numpy just finished my Python, and came here to learn numpy.
But sir from this video i'm not able to learn because you have maked this for working professionals not for begineers.

Ответить
@illeyunzaman5329
@illeyunzaman5329 - 17.03.2023 08:54

code basics you created the range again and again in the code using range function and you call it list although list is created with [ ] and elements are separated by commas please explain this

Ответить
@sahilmehra290
@sahilmehra290 - 02.01.2023 15:31

Idk watching your video seems like just looking someone who knows how to code nothing else .

Ответить
@rajanmishra7733
@rajanmishra7733 - 02.12.2022 18:48

Int object is not Iterable

Ответить
@Quest_adventure
@Quest_adventure - 30.10.2022 03:18

Hi, can anyone explain while trying to install via terminal the message shows like that- "Defaulting to user installation because normal site-packages is not writeable". Thanks

Ответить
@saritha3957
@saritha3957 - 14.09.2022 11:08

How is " L= range(1000)" making a list ?

Ответить
@nikitasinha8181
@nikitasinha8181 - 05.09.2022 14:19

Thank you sir

Ответить
@raunakgiri21
@raunakgiri21 - 30.08.2022 06:23

Hey! I tried traversing through both python list and numpy array using for loop and i found a surprising result!
Numpy array took more time than Array list !!!
Can anyone explain why?

Ответить
@odarigeraldangule
@odarigeraldangule - 28.08.2022 10:53

Straight to the point

Ответить
@storieswithbilalhashmi4490
@storieswithbilalhashmi4490 - 28.06.2022 12:05

Sir! I am a real fan of you but I feel that being a super expert you sometimes can't come down to a beginner's level to consider his/her issues. In the starting of Numpy who can understand where and how to get pip installed.

Ответить
@khizarstudy2095
@khizarstudy2095 - 20.06.2022 11:49

No jupyter notebook in this 🥲

Ответить
@manishaarya247
@manishaarya247 - 15.04.2022 10:06

Problem ....
.Load attributes is not defined

Ответить
@carkibaatapkesath5323
@carkibaatapkesath5323 - 06.04.2022 09:00

Sir you are great 🙏🙏

Ответить
@starship1701
@starship1701 - 30.01.2022 03:59

Your keyboard is so loud

Ответить
@muthulokesh9444
@muthulokesh9444 - 20.10.2021 22:54

Clearly explained- Thaks!

Ответить
@anharkarimmahyudin8108
@anharkarimmahyudin8108 - 08.07.2021 03:49

Hello sir, I've installed numpy in cmd and then I test running it in python idle and it's work, but why when I tried to run it in pycharm it's not work and always error. It's said that "no module named numpy" why ?

Ответить
@siddharthadebvines5296
@siddharthadebvines5296 - 30.06.2021 13:30

You are an Angel, Sir
Love your content

Ответить
@06_shubhambirhade81
@06_shubhambirhade81 - 28.06.2021 20:44

Important interview question asked about numpy is which is fast among numpy or list? And why?
And this is well explained in this video.
Thanks for such amazing videos
👍👍👍

Ответить
@adilmajeed8439
@adilmajeed8439 - 16.06.2021 22:21

in your earlier 16 videos, you have mentioned about the list comprehensions and zip functions, why i am asking these questions because i am following what you had advised in your initial video and being me as a novice difficult to follow the instructions then

Ответить
@adilmajeed8439
@adilmajeed8439 - 16.06.2021 22:09

Why you have used sys.getsizeof for any given number?

Ответить
@poshhakhbyaakansha2890
@poshhakhbyaakansha2890 - 22.05.2021 10:41

U r good. Just one advice. Don't concentrate on your pronunciation. Speak the way you do. English is just a language...like any other language. We don't really have to overdo it.

Ответить
@kevinsaify8270
@kevinsaify8270 - 11.05.2021 11:36

Can you please make a full data science course according to sequence???

Ответить
@nischalshakya2015
@nischalshakya2015 - 25.02.2021 16:33

I think the size of one element of the NumPy array is not always 4 bytes. It depends on whether your machine is 32 bit or 64 bit.

Ответить
@satyenmehta9749
@satyenmehta9749 - 17.10.2020 17:21

why do i get print(sys.getsizeof(5)) - 28 ??

Ответить
@RNpatil.
@RNpatil. - 26.09.2020 11:15

I dont know anything about coding and all

Ответить
@mayurbhor2231
@mayurbhor2231 - 11.09.2020 10:03

Ok , Why does python lists exist then ?

Ответить
@anahata1710
@anahata1710 - 10.08.2020 19:39

Python по скайпу. Научу мыслить нестандартно. Решаем задачки, строим утилиты, игры. Data Science и всё, что с эти связано. Телега у меня в контактах. Напиши мне

Ответить
@brijesh0808
@brijesh0808 - 03.05.2020 15:48

In my comp the size diff is 28vs8 instead of 14vs4. Is this because of 32bit and 64bit sys?

Ответить
@meghnasingh9941
@meghnasingh9941 - 22.04.2020 15:11

why only my numpy array taking more time than python list, rest everything is same

Ответить
@vskgaming1698
@vskgaming1698 - 15.04.2020 20:18

can you pls help me what wrong in this


i have tried an example:


Write a NumPy program to replace all elements of NumPy array that are greater than specified array.


data=np.array(([4, 4, 3], [7, 5, 3], [5, 3,1]))
print(data)

for i in data:
if i > 5:
i ==5
else:
i == data
print(data)




i want the output as


Replace all elements of the said array with 5 which are greater than 5
[[4 4 3]
[5 5 3]
[5 3 1]]

Ответить
@surajmondal5278
@surajmondal5278 - 12.03.2020 18:37

What is the reason of putting 5 in braces for sys.getsizeof() for list only?
For array why you did not use same thing?

Ответить
@t84355
@t84355 - 01.10.2019 23:00

thanks

Ответить
@sushantregmi2126
@sushantregmi2126 - 09.08.2019 21:05

Quality content

Ответить
@luckybairagi7294
@luckybairagi7294 - 07.06.2019 22:53

Nice video... But how did you assigned list in integer??

Ответить
@milan_shah
@milan_shah - 03.06.2019 07:00

(I have Python 3.5.2 installed in Ubuntu 16.04.5)
For the above code, why I'm getting the following output rather than (14000 & 4000):

24000
8000

Ответить
@ruchk3872
@ruchk3872 - 19.03.2019 00:00

Thank you for explaining it so simple way.....

Ответить
@vamsisaggurthi5528
@vamsisaggurthi5528 - 15.01.2019 20:00

Awesome

Ответить
@mehreenkhan4917
@mehreenkhan4917 - 02.01.2019 11:32

U have a kashmiri accent..... Anyways good tutorial

Ответить
@goodester6924
@goodester6924 - 20.12.2018 20:32

great tutorial!

Ответить
@miladsayad2935
@miladsayad2935 - 28.10.2018 00:15

a = np.arange(1000). 
print (a.itemsize * a.size)
I get 8000. (8 bites) can you please explain this?

Ответить
@nupoorsolanki8526
@nupoorsolanki8526 - 24.10.2018 16:44

error importing mysqldb....m using python 3.7..module working in cmd prompt but not in jupytor notebook..i have tried all possible like MySqldb..........sql.connector..all experts are failed to help me..can u solve. im tryong to connect with mysql database using python..
success to installing..but failed to import in jupytor anaconda..

Ответить
@sanketshirke185
@sanketshirke185 - 13.10.2018 14:27

kya ye complet tutorial he numpy ka? can u uplode veidos on matrix in numpy

Ответить
@ramanjaneyulu476
@ramanjaneyulu476 - 06.10.2018 20:24

Hi,hello all, I have one csv file and one xlsx file..
My requirement is I want to read the data of particular row and column from csv file
And that data need to write in particular row and column to an xlsx file.....Any suggestions would be appreciated

Ответить
@yilmazbingol6953
@yilmazbingol6953 - 05.08.2018 22:30

pip install numpy
^
SyntaxError: invalid syntax can anyone help pls

Ответить
@sonamchoudhary5918
@sonamchoudhary5918 - 22.07.2018 06:59

Hi. I will soontbstart data analyst tutorial on udecity. They want numpy as prerequisite. Will these 4 tutorial be sufficient to start the course ??

Ответить