ワンクリックで
numpy
Best practices for numerical computing with NumPy including arrays, broadcasting, and vectorization.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Best practices for numerical computing with NumPy including arrays, broadcasting, and vectorization.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Best practices for building CLI applications with Click including commands, groups, options, and testing.
Best practices for Django web development including models, views, templates, and testing.
Best practices for Flask web development including routing, blueprints, and testing.
Best practices for template rendering with Jinja2 including environments, filters, autoescaping, and security.
Best practices for writing and organizing tests with pytest including fixtures, parametrize, and plugins.
Best practices for HTTP client usage with Requests including sessions, error handling, and timeouts.
| name | numpy |
| description | Best practices for numerical computing with NumPy including arrays, broadcasting, and vectorization. |
Best practices for numerical computing with NumPy including arrays, broadcasting, and vectorization.
Apply this skill when doing numerical computing with NumPy — arrays, broadcasting, linear algebra, random sampling.
np.float64, np.int32) when creating arrays.np.zeros, np.ones, np.empty, np.arange, np.linspace over list-based construction.np.where() for conditional element-wise operations.np.float32 instead of np.float64 when precision is not critical to halve memory.reshape, slicing) instead of copies when data doesn't need mutation.np.memmap for arrays too large to fit in RAM.np.random.default_rng(seed) (new Generator API) instead of np.random.seed().==; use np.allclose() or np.isclose().np.matrix — it's deprecated; use 2D np.ndarray.