In [10]: %time for _ in range(10): my_arr2 = my_arr * 2
CPU times: user 20 ms, sys: 50 ms, total: 70 ms
Wall time: 72.4 ms
In [11]: %time for _ in range(10): my_list2 = [x * 2 for x in my_list]
CPU times: user 760 ms, sys: 290 ms, total: 1.05 s
Wall time: 1.05 s
この例で示されるように、
NumPy
のアルゴリズムは
Python
標準で提供される同等機能と比較して
10
倍から
100
倍、あるいはそれ以上に高速に動作します。さらに要求するメモリ量も格段に少なく済む
という特徴があります。
4.1
NumPy ndarray
:多次元配列オブジェクト
ndarray
は
NumPy
の基本要素の
1
つであり、その名前は
N
次元配列オブジェクト(
N-dimensional
array
)に由来します。
ndarray
は
Python
環境における高速かつ柔軟な大規模データ処理を提供しま
す。まず
ndarray
の算術演算から見ていきましょう。
ndarray
に対する算術操作は、その配列要素すべ
てに作用します。
NumPy
が配列要素に一括計算する仕組みを見ていきたいと思います。これは標準
Python
環境でスカラー値を算術演 ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.
O’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
I wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
I’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
I'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.