NumPy

Introducere în Python

Hugo Bowne-Anderson

Data Scientist at DataCamp

Recapitulare: liste

  • Puternice

  • Colecție de valori

  • Acceptă tipuri diferite

  • Modificare, adăugare, eliminare

  • Necesare în Data Science

    • Operații matematice pe colecții

    • Viteză

Introducere în Python

Ilustrare

height = [1.73, 1.68, 1.71, 1.89, 1.79]
height
[1.73, 1.68, 1.71, 1.89, 1.79]
weight = [65.4, 59.2, 63.6, 88.4, 68.7]
weight
[65.4, 59.2, 63.6, 88.4, 68.7]
weight / height ** 2
TypeError: unsupported operand type(s) for ** or pow(): 'list' and 'int'
Introducere în Python

Soluție: NumPy

  • Numeric Python

  • Alternativă la listele Python: NumPy Array

  • Calcule pe întregul array

  • Simplu și rapid

  • Instalare

    • În terminal: pip3 install numpy
Introducere în Python

NumPy

import numpy as np

np_height = np.array(height) np_height
array([1.73, 1.68, 1.71, 1.89, 1.79])
np_weight = np.array(weight)
np_weight
array([65.4, 59.2, 63.6, 88.4, 68.7])
bmi = np_weight / np_height ** 2
bmi
array([21.85171573, 20.97505669, 21.75028214, 24.7473475 , 21.44127836])
Introducere în Python

Comparație

height = [1.73, 1.68, 1.71, 1.89, 1.79]
weight = [65.4, 59.2, 63.6, 88.4, 68.7]
weight / height ** 2
TypeError: unsupported operand type(s) for ** or pow(): 'list' and 'int'
np_height = np.array(height)
np_weight = np.array(weight)
np_weight / np_height ** 2
array([21.85171573, 20.97505669, 21.75028214, 24.7473475 , 21.44127836])
Introducere în Python

NumPy: observații

np.array([1.0, "is", True])
array(['1.0', 'is', 'True'], dtype='<U32')
  • Array-urile NumPy: conțin un singur tip
Introducere în Python

NumPy: observații

python_list = [1, 2, 3]
numpy_array = np.array([1, 2, 3])
python_list + python_list
[1, 2, 3, 1, 2, 3]
numpy_array + numpy_array
array([2, 4, 6])
  • Tipuri diferite: comportamente diferite!
Introducere în Python

Indexare în NumPy

bmi
array([21.85171573, 20.97505669, 21.75028214, 24.7473475 , 21.44127836])
bmi[1]
20.975
bmi > 23
array([False, False, False,  True, False])
bmi[bmi > 23]
array([24.7473475])
Introducere în Python

Să exersăm!

Introducere în Python

Preparing Video For Download...