今回は numpy.delete 列を削除する方法について説明します。 numpy.delete が列を削除するときの 注意事項は何ですか? ここで実際のケースを見てみましょう。
基本的な紹介: numpy.delete
numpy.delete(arr, obj, axis=None)[source]
Return a new array with sub-arrays along an axis deleted. For a one dimensional array, this returns those entries not returned by arr[obj].
Parameters:
arr : array_like
Input array.
obj : slice, int or array of ints
Indicate which sub-arrays to remove.
axis : int, optional
The axis along which to delete the subarray defined by obj. If axis is None, obj is applied to the flattened array.
Returns:
out : ndarray
A copy of arr with the elements specified by obj removed. Note that delete does not occur in-place. If axis is None, out is a flattened array.
例:
1. 1つの列を削除します>>> dataset=[[1,2,3],[2,3,4],[4,5,6]]
>>> import numpy as np
>>> dataset = np.delete(dataset, -1, axis=1)
>>> dataset
array([[1, 2],
[2, 3],
[4, 5]])
2. rreeeあなたは読んだと思いますこの記事の事例 この方法をマスターしたら、よりエキサイティングなコンテンツについては、php 中国語 Web サイトの他の関連記事に注目してください。 推奨読書:
Python2.7 で pip を使用できない問題に対する完璧な解決策 Python が txt ファイルを行ごとに読み書きする方法
以上が列を削除する numpy.delete メソッドの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。