[PYTHON] numpy Teil 1

ndarray n-dimensionales Array

1


import numpy as np

arr = np.array([[1, 2, 3], [4, 5, 6]])
print(arr)

Ausführungsergebnis von 1


[[1 2 3]
 [4 5 6]]

Sie können den Datentyp des Arrays angeben. Wie viele Typbits sollten verwendet werden? Sie können die zu sichernde Speichermenge anpassen, indem Sie die Anzahl der Bits angeben.

2


import numpy as np

a = [1, 2, 3]

ndarray = np.array(a, dtype='float32')
print(ndarray.dtype)

ndarray = np.array(a, dtype='int32')
print(ndarray.dtype)

Ausführungsergebnis von 2


float32
int16

Datentypänderung

3


import numpy as np

a = [1, 2, 3]

arr = np.array(a, dtype='int32')
arr2 = arr.astype('float32')

print(arr2.dtype)

Ausführungsergebnis von 2


float32

Recommended Posts

numpy Teil 1
numpy Teil 2
Datum / Uhrzeit Teil 1
Numpy-Übung 1
Numpy [Basic]
NumPy-Grundlagen
Argparse Teil 1
Numpy Memorandum _ Matrix
numpy tipps
Mehrdimensionale Array-Berechnung ohne Numpy Teil 2
Über Numpy
Python-Anwendung: Numpy Teil 3: Double Array
NumPy-Achse
Verwenden Sie Numpy
Warteschlangentheorie Teil 4
neo4j mit Sandkasten Teil 12
Mein Numpy (Python)
QGIS + Python Teil 2
Sandkasten mit neo4j Teil 5
wo von numpy
Django startete Teil 1
Report_Deep Learning (Teil 2)
Report_Deep Learning (Teil 1)
Report_Deep Learning (Teil 1)
QGIS + Python Teil 1
GMT-Installationsteil 2.
GMT-Installationsteil 1.
Django startete Teil 4
Numpy Unit Test
NumPy-Array-Operation (3)
Report_Deep Learning (Teil 2)
Liste und Numpy
neo4j mit Sandkasten Teil 13
NumPy Universalfunktion
neo4j mit Sandkasten Teil 15
numpy memorandum 1 / np.pad
Warteschlangentheorie Teil 3
# Python-Grundlagen (#Numpy 1/2)
# Python-Grundlagen (#Numpy 2/2)
Numpy-Index-Suche
Python: Scraping Teil 1
NumPy-Array-Operation (1)
neo4j mit Sandkasten Teil 16
[Numpy] Shuffle ndarray
Python #Numpy Basics
Numpys nicht-grundlegende Technik
Über Numpy Broadcast
[PyTorch] Beispiel ① ~ NUMPY ~
Sandkasten mit neo4j Teil 11
Numpy + Atlas installieren
Lösung Wenn Sie Python 3.6 oder höher verwenden, benötigen Sie die enum34-Bibliothek ebenfalls nicht. Deinstallieren Sie sie daher und verwenden Sie das Standard-Enum-Modul. Enum34 deinstallieren Führen Sie nach der Deinstallation von enum34 erneut `pip install optuna` aus und Sie haben Optuna erfolgreich installiert! Python, pip, Python3, enum, OptunaPython3 Beginn Teil 1
[Python] Numpy Memo
Python: Scraping Teil 2
Pandas Serie Teil 1
Einführung in Python numpy pandas matplotlib (für ~ B3 ~ part2)